.zshrc: Add ~/.local/bin to PATH on Linux

This is where pip binaries end up it seems.
This commit is contained in:
Alan Orth 2018-05-31 11:55:48 -07:00
parent 4503c1c997
commit 86709372d4
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

2
.zshrc
View File

@ -54,7 +54,7 @@ if [[ "$OSTYPE" =~ ^darwin.*$ ]]; then
PATH=$PATH:/usr/local/opt/postgresql@9.5/bin
elif [[ "$OSTYPE" =~ ^linux.*$ ]]; then
# noop
PATH=$PATH:~/.local/bin
fi
alias ls='ls -F --color=auto'