[zsh] Fix up path

- Write prepend-to-path, to add a path component
- Add path to go binaries on OS X
This commit is contained in:
Eryn Wells 2015-01-03 18:36:35 -08:00
parent 73a201ed50
commit 7ad97f48ea
2 changed files with 23 additions and 23 deletions

View file

@ -1,9 +1,8 @@
# vim: set ft=zsh:
# Eryn Wells <eryn@erynwells.me>
[[ -d "$HOME/Library/Python/2.7/bin" ]] && path=("$HOME/Library/Python/2.7/bin" $path)
export PATH
prepend-to-path "$HOME/Library/Python/2.7/bin"
prepend-to-path "/usr/local/go/bin"
py27local="$HOME/Library/Python/2.7/lib/python/site-packages"
if [[ -d "$py27local" ]]; then