.zshrc: Initialize jenv
Turns out you actually have to initialize this and add the ROOT.
This commit is contained in:
parent
54b1eaaa88
commit
758037091f
6
.zshrc
6
.zshrc
@ -82,6 +82,12 @@ fi
|
|||||||
# Initialize pyenv if it exists
|
# Initialize pyenv if it exists
|
||||||
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
|
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
|
# If a private bin directory exists, add it to PATH
|
||||||
[[ -d ~/bin ]] && PATH=$PATH:~/bin
|
[[ -d ~/bin ]] && PATH=$PATH:~/bin
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user