fix env and term var
This commit is contained in:
parent
6577a1b54c
commit
acb3af55ee
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue