Move system-specific configuration to .env; remove .env.darwin

This commit is contained in:
Eryn Wells 2012-07-20 09:41:48 -07:00
parent e2234bd4a0
commit ec39d11f26
2 changed files with 37 additions and 18 deletions

View file

@ -1,16 +0,0 @@
# .env.darwin
# vim: ft=zsh
#
# Darwin-specific environment settings
#
# Eryn Wells <eryn@erynwells.me>
export PATH=$HOME/Library/Python/2.7/bin:$PATH
local py27local=$HOME/Library/Python/2.7/lib/python/site-packages
if [[ ! -z $PYTHONPATH ]]; then
[ -d $py27local ] && PYTHONPATH=$py27local:$PYTHONPATH
else
PYTHONPATH=$py27local
fi
export PYTHONPATH