.zshrc: Add jenv

This is getting ridiculous, but sure.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
Alan Orth 2016-03-02 17:15:01 +02:00
parent 1e37d1fc12
commit 222f291e28
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 9 additions and 0 deletions

9
.zshrc
View File

@ -91,6 +91,15 @@ if [[ -d ~/.pyenv ]]; then
fi
fi
# Enable jenv
# See: https://github.com/gcuisinier/jenv
if [[ -d ~/.jenv ]]; then
export JENV_ROOT="$HOME/.jenv"
PATH="$JENV_ROOT/bin:$PATH"
eval "$(jenv init -)"
fi
# If a private bin directory exists, add it to PATH
[[ -d ~/bin ]] && PATH=$PATH:~/bin