From 8aadb6535107d38f8066cda760800930a31729ef Mon Sep 17 00:00:00 2001 From: James Walker Date: Thu, 25 Jul 2013 18:10:19 -0400 Subject: [PATCH] rvm seems to be complaining now if it's not first in the $PATH --- zshrc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zshrc b/zshrc index 14e096f..c910862 100644 --- a/zshrc +++ b/zshrc @@ -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"