rvm seems to be complaining now if it's not first in the $PATH

This commit is contained in:
James Walker 2013-07-25 18:10:19 -04:00
parent b0024c89b5
commit 8aadb65351

12
zshrc
View File

@ -30,12 +30,6 @@ fi
# OH MY ZSH!
source $ZSH/oh-my-zsh.sh
# Ruby / rvm
if [ -f "$HOME/.rvm/scripts/rvm" ]; then
source "$HOME/.rvm/scripts/rvm"
rvm 1.9.3
fi
# Node / nvm
if [ -f "$HOME/.nvm/nvm.sh" ]; then
source "$HOME/.nvm/nvm.sh"
@ -46,4 +40,10 @@ if [ -f "$HOME/.phpbrew/bashrc" ]; then
source "$HOME/.phpbrew/bashrc"
fi
# Ruby / rvm
if [ -f "$HOME/.rvm/scripts/rvm" ]; then
source "$HOME/.rvm/scripts/rvm"
rvm 2.0.0
fi
export LSCOLORS="ExGxFxdxCxDxDxhbadExEx"