Add $HOME/.local/bin to path

This commit is contained in:
Adam Goldsmith 2022-02-12 23:15:43 -05:00
parent 5a50b6be66
commit fedbaf42fc
1 changed files with 1 additions and 1 deletions

View File

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