From cde788ed194603be4de5464433b835f3d098320c Mon Sep 17 00:00:00 2001 From: Carlos Cardoso Date: Sun, 23 Mar 2014 23:36:11 -0300 Subject: [PATCH] added git-fast to oh-my-zsh startup config --- templates/zshrc-linux.zsh | 2 +- templates/zshrc-mac.zsh | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) 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