fix env and term var

master
Sebastian Tramp 2012-09-04 09:28:14 +02:00
parent 6577a1b54c
commit acb3af55ee
No known key found for this signature in database
GPG Key ID: E8093B579D601B44
2 changed files with 8 additions and 1 deletions

View File

@ -12,6 +12,9 @@ export ZSH_CACHE="$XDG_CACHE_HOME/zsh"
mkdir -p $ZSH_CACHE
# executable search path
export PATH=/usr/local/sbin:$PATH
export PATH=$HOME/.local/bin:$PATH
export PATH=$HOME/.local/sbin:$PATH
# https://github.com/mxcl/homebrew/issues/11182
export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH

View File

@ -1,3 +1,7 @@
# if we have a screen, we can try a colored screen
if [[ "$TERM" == "screen" ]]; then
export TERM="screen-256color"
fi
# activate ls colors, (private if possible)
export ZSH_DIRCOLORS="$ZSH_CONFIG/dircolors-solarized/dircolors.256dark"