.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

2
.zshrc
View File

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