From b3d9b6b5b41d7f0610645517b5813d544f557596 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 20 Aug 2016 20:40:41 +0300 Subject: [PATCH] .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. --- .zshrc | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.zshrc b/.zshrc index 8d0d84a..6f97a7c 100644 --- a/.zshrc +++ b/.zshrc @@ -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