# vim: set ft=zsh: # Eryn Wells 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" if [[ -d "$py27local" ]]; then if [[ ! -z $PYTHONPATH ]]; then PYTHONPATH=$py27local:$PYTHONPATH else PYTHONPATH=$py27local fi fi unset py27local export PYTHONPATH