.zshrc: Use jenv from Homebrew instead

Too many things running checks and initializing at shell startup,
and the one from Homebrew just works with my existing .jenv.
This commit is contained in:
2016-08-20 20:40:41 +03:00
parent d91f2ed127
commit b3d9b6b5b4

9
.zshrc
View File

@ -93,15 +93,6 @@ 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