First search in the custom folder for the theme

This commit is contained in:
fceccon 2011-09-20 12:04:06 +02:00 committed by Praful Mathur
commit cd9318ac3f

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