From ff2994fb10e5e9094f6e80951c29fa43b6258384 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 31 Oct 2016 09:25:41 +0200 Subject: [PATCH] .zshrc: Add test for RVM --- .zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.zshrc b/.zshrc index 22d925a..c63ac00 100644 --- a/.zshrc +++ b/.zshrc @@ -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