add distro specific python version

This commit is contained in:
Thomas Ruoff
2014-11-07 00:11:37 +01:00
parent d38e4cd7f2
commit e4ebffd3ad

8
zshenv
View File

@@ -19,3 +19,11 @@ alias t=todo.sh
BASE16_SCHEME="solarized" BASE16_SCHEME="solarized"
BASE16_SHELL="$HOME/.base16-shell/base16-$BASE16_SCHEME.dark.sh" BASE16_SHELL="$HOME/.base16-shell/base16-$BASE16_SCHEME.dark.sh"
[[ -s $BASE16_SHELL ]] && . $BASE16_SHELL [[ -s $BASE16_SHELL ]] && . $BASE16_SHELL
DIST=$(lsb_release -si)
case $DIST in
Arch )
# use python 2.7 by default
export PYTHON=python2
;;
esac