Merge pull request #618 from fceccon/custom-theme

Use a custom version of a theme if the user has it
This commit is contained in:
Robby Russell 2011-12-26 10:23:53 -08:00
commit 8bc60824f6
1 changed files with 6 additions and 1 deletions

View File

@ -59,7 +59,12 @@ then
else
if [ ! "$ZSH_THEME" = "" ]
then
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
if [ -f "$ZSH/custom/$ZSH_THEME.zsh-theme" ]
then
source "$ZSH/custom/$ZSH_THEME.zsh-theme"
else
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
fi
fi
fi