diff --git a/.zshrc b/.zshrc index 3ac94d1..e1043ab 100644 --- a/.zshrc +++ b/.zshrc @@ -77,7 +77,8 @@ ZSH_THEME="robbyrussell" # Custom plugins may be added to $ZSH_CUSTOM/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git) +plugins=(git + vi-mode) source $ZSH/oh-my-zsh.sh @@ -86,7 +87,7 @@ source $ZSH/oh-my-zsh.sh # export MANPATH="/usr/local/man:$MANPATH" # You may need to manually set your language environment -# export LANG=en_US.UTF-8 + export LANG=en_US.UTF-8 # Preferred editor for local and remote sessions # if [[ -n $SSH_CONNECTION ]]; then @@ -111,3 +112,14 @@ eval "$(/opt/homebrew/bin/brew shellenv)" # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh + +# ---------------------- +# Git Aliases +# ---------------------- +alias ga='git add' +alias gaa='git add -A' +alias gcm='git commit -m' +alias gd='git diff' +alias gpl='git pull' +alias gp='git push' +alias gs='git status'