[zsh] Add all python user bin/ directories to path

This commit is contained in:
Eryn Wells 2018-03-08 20:58:55 -08:00
parent d6c4e00e60
commit 9aa7b816a7

View file

@ -1,7 +1,9 @@
# vim: set ft=zsh:
# Eryn Wells <eryn@erynwells.me>
prepend-to-path "$HOME/Library/Python/2.7/bin"
for f in `ls "$HOME/Library/Python"`; do
prepend-to-path "$HOME/Library/Python/$f/bin"
done
prepend-to-path "/usr/local/go/bin"
py27local="$HOME/Library/Python/2.7/lib/python/site-packages"