Fix for dumb terminals like Vim's.

This commit is contained in:
Sorin Ionescu 2011-02-27 10:13:57 -05:00
commit deab2ed376
8 changed files with 20 additions and 15 deletions

View file

@ -6,6 +6,11 @@ fi
# Initializes Oh My Zsh
# Disable colors on dumb terminals
if [ "$TERM" = "dumb" ]; then
DISABLE_COLOR="true"
fi
# add a function path
fpath=($ZSH/functions $ZSH/completions $fpath)