dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 7884cc4d755c63e38a35dcd471a2085669d072aa
parent 9890573b6c1071a1aba670b22dff2333a3b63140
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed, 15 May 2019 11:51:38 +0200

zhsrc: fix jenv initialisation

Former-commit-id: 3c153428f0d1a552c47e122acf19a29a143109dd
Diffstat:
Mshell/zshrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shell/zshrc b/shell/zshrc @@ -118,7 +118,7 @@ if [[ $PATH != *"$HOME/.rbenv/shims"* ]] && command -v rbenv &> /dev/null; then fi # jenv -if ! command -v jenv &> /dev/null; then +if command -v jenv &> /dev/null; then export PATH="$HOME/.jenv/bin:$PATH" eval "$(jenv init -)" export JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home"