revert(zshenv): remove needless PATH setup"

This reverts commit 4b947ab25f.

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 ^_^
This commit is contained in:
2021-04-19 10:53:38 +01:00
parent 72c4e3d919
commit 66b00bdf67

9
zshenv
View File

@@ -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"