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

This is where pip binaries end up it seems.
This commit is contained in:
2018-05-31 11:55:48 -07:00
parent 4503c1c997
commit 86709372d4

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'