Add ~/.cargo/bin to path

This commit is contained in:
Adam Goldsmith 2024-04-17 19:39:38 -04:00
parent 8b0b1dce34
commit b03223b9ba
1 changed files with 7 additions and 1 deletions

View File

@ -22,7 +22,13 @@ export WINEDLLOVERRIDES=winemenubuilder.exe=d
# Don't allow duplicate values in path
typeset -U path
path=($HOME/.bin $HOME/.local/bin $HOME/.dotfiles/ $path)
path=(
$HOME/.bin
$HOME/.local/bin
$HOME/.dotfiles/
$HOME/.cargo/bin
$path
)
# Set temporary files locations
if [[ ! -d "$TMPDIR" ]]