.zshrc: Add test for RVM

This commit is contained in:
Alan Orth 2016-10-31 09:25:41 +02:00
parent 709df7306e
commit ff2994fb10
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 5 additions and 0 deletions

5
.zshrc
View File

@ -92,6 +92,11 @@ if which jenv > /dev/null; then
eval "$(jenv init -)"
fi
# Enable ruby version manager if it exists
if [[ -s ~/.rvm/scripts/rvm ]];
. ~/.rvm/scripts/rvm
fi
# If a private bin directory exists, add it to PATH
[[ -d ~/bin ]] && PATH=$PATH:~/bin