.zshrc: Initialize jenv

Turns out you actually have to initialize this and add the ROOT.
This commit is contained in:
Alan Orth 2016-08-20 22:15:05 +03:00
parent 54b1eaaa88
commit 758037091f
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 6 additions and 0 deletions

6
.zshrc
View File

@ -82,6 +82,12 @@ fi
# Initialize pyenv if it exists
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
# Initialize jenv if it exists
if which jenv > /dev/null; then
export JENV_ROOT=~/.jenv
eval "$(jenv init -)";
fi
# If a private bin directory exists, add it to PATH
[[ -d ~/bin ]] && PATH=$PATH:~/bin