diff options
-rw-r--r-- | .config/zsh/includes/path.zsh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.config/zsh/includes/path.zsh b/.config/zsh/includes/path.zsh index 916a444..7f4da06 100644 --- a/.config/zsh/includes/path.zsh +++ b/.config/zsh/includes/path.zsh @@ -1,9 +1,7 @@ +#!/usr/bin/zsh + # cargo [ -d "${HOME}/.cargo/bin" ] && PATH="${HOME}/.cargo/bin:${PATH}" -# rustup -if command -v rustup > /dev/null; then - [[ -d "${HOME}/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin" ]] && PATH="${HOME}/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin:${PATH}" -fi # pyenv [ -d "${HOME}/.local/bin" ] && PATH="${HOME}/.local/bin:${PATH}" [ -d "${HOME}/.local/share/pyenv/shims" ] && PATH="${HOME}/.local/share/pyenv/shims:${PATH}" |