From 758037091f02282eadede10475c54544b97acf98 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 20 Aug 2016 22:15:05 +0300 Subject: [PATCH] .zshrc: Initialize jenv Turns out you actually have to initialize this and add the ROOT. --- .zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.zshrc b/.zshrc index c36c6c2..37e480d 100644 --- a/.zshrc +++ b/.zshrc @@ -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