Skip to content

Commit

Permalink
zsh: add ~/.cargo/bin to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
geodimm committed Feb 18, 2024
1 parent 3f5e42a commit 2f0f6d4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions zsh/zshenv
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ fi
if [[ -f "${HOME}/.cargo/env" ]]; then
source "${HOME}/.cargo/env"
fi
if [[ ! "${PATH}" == *${HOME}/.cargo/bin* ]]; then
export PATH="${PATH}:${HOME}/.cargo/bin"
fi

# NVM
export NVM_DIR="${HOME}/.nvm"
Expand Down

0 comments on commit 2f0f6d4

Please sign in to comment.