From d3b4dcf8670148643b44c9915c68a385acc2255e Mon Sep 17 00:00:00 2001 From: Patrick Oscity Date: Thu, 3 May 2012 22:12:46 +0300 Subject: [PATCH] load custom themes from $ZSH_CUSTOM instead of $ZSH/custom --- oh-my-zsh.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 732a403b7..4122810fe 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -65,9 +65,9 @@ then else if [ ! "$ZSH_THEME" = "" ] then - if [ -f "$ZSH/custom/$ZSH_THEME.zsh-theme" ] + if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ] then - source "$ZSH/custom/$ZSH_THEME.zsh-theme" + source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" else source "$ZSH/themes/$ZSH_THEME.zsh-theme" fi