fix env and term var
This commit is contained in:
parent
6577a1b54c
commit
acb3af55ee
|
@ -12,6 +12,9 @@ export ZSH_CACHE="$XDG_CACHE_HOME/zsh"
|
||||||
mkdir -p $ZSH_CACHE
|
mkdir -p $ZSH_CACHE
|
||||||
|
|
||||||
# executable search path
|
# executable search path
|
||||||
|
export PATH=/usr/local/sbin:$PATH
|
||||||
export PATH=$HOME/.local/bin:$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
|
||||||
|
|
|
@ -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)
|
# activate ls colors, (private if possible)
|
||||||
export ZSH_DIRCOLORS="$ZSH_CONFIG/dircolors-solarized/dircolors.256dark"
|
export ZSH_DIRCOLORS="$ZSH_CONFIG/dircolors-solarized/dircolors.256dark"
|
||||||
|
|
Loading…
Reference in a new issue