diff --git a/templates/zshrc-linux.zsh b/templates/zshrc-linux.zsh index e625e5ded..97ec10e11 100644 --- a/templates/zshrc-linux.zsh +++ b/templates/zshrc-linux.zsh @@ -33,7 +33,7 @@ DISABLE_VENV_CD="1" # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) -plugins=(git tmux debian python virtualenvwrapper) +plugins=(git gitfast tmux debian python virtualenvwrapper) # Customize to your needs... if [ -z "$LC_ALL" ]; then export LC_ALL=en_US.UTF-8; fi diff --git a/templates/zshrc-mac.zsh b/templates/zshrc-mac.zsh index 97282c898..2a1895e60 100644 --- a/templates/zshrc-mac.zsh +++ b/templates/zshrc-mac.zsh @@ -33,7 +33,7 @@ DISABLE_VENV_CD="1" # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) -plugins=(git postgres tmux python vim-override virtualenvwrapper) +plugins=(git gitfast postgres tmux python vim-override virtualenvwrapper) # User configuration if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi @@ -47,5 +47,8 @@ if [ -z "$LANG" ]; then export LANG=en_US.UTF-8; fi # Compilation flags # export ARCHFLAGS="-arch x86_64" +# MacOSX specific aliases +alias bu='brew update && brew upgrade' + source $ZSH/oh-my-zsh.sh unsetopt correctall