From 66b00bdf675f2847a349fb867f03218ff9d4d488 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 19 Apr 2021 10:53:38 +0100 Subject: [PATCH] revert(zshenv): remove needless PATH setup" This reverts commit 4b947ab25fd5666b4c6990d5331d1996962914d4. The PATH setup is obviously needed for tools that don't load an interactive shell to work. That'll teach me to not update my dotfiles when struggling to stay away ^_^ --- zshenv | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/zshenv b/zshenv index 2c65c60..c3766b1 100644 --- a/zshenv +++ b/zshenv @@ -154,6 +154,15 @@ export GOPATH="$HOME/.go" export GOROOT="$HOME/.local/go" path_prepend "$GOPATH/bin" +# Ruby setup for rbenv (./zsh/ruby.zsh) +path_prepend "$HOME/.rbenv/shims" + +# Python setup for pyenv (./zsh/python.zsh) +path_prepend "$HOME/.pyenv/shims" + +# Node setup for nodenv (./zsh/nodejs.zsh) +path_prepend "$HOME/.nodenv/shims" + # Rust setup path_prepend "$HOME/.cargo/bin"