From 164db5c20e362e2b4cacb909aac039dab8b96c9a Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Fri, 3 May 2024 16:40:55 +0100 Subject: [PATCH] Vim alias --- dotfiles/.bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index bf0a40c9..fac7078a 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -20,6 +20,7 @@ alias ls='ls --color=auto' alias ll='ls -lhi' alias ta='tmux attach' alias t='tmux' +alias v='vim' extract() { if [ -f $1 ]; then @@ -57,6 +58,8 @@ pushall() { if [[ -z "$1" ]]; then echo "Usage: pushall \"commit message\"" else + git diff + read -p "Press ENTER to continue..." git add -A git commit -m "$@" git push