From 5dcbd65dfac878654bd2e80bca37548c29d461a8 Mon Sep 17 00:00:00 2001 From: chazzbg Date: Sat, 22 Nov 2014 20:43:42 +0200 Subject: [PATCH] respect the convetion Respect the convention and search for theme in $ZSH_CUSTOM/themes/ --- plugins/themes/themes.plugin.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/themes/themes.plugin.zsh b/plugins/themes/themes.plugin.zsh index 7519b0253..a88b6778b 100644 --- a/plugins/themes/themes.plugin.zsh +++ b/plugins/themes/themes.plugin.zsh @@ -11,6 +11,9 @@ function theme if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ] then source "$ZSH_CUSTOM/$1.zsh-theme" + elif [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ] + then + source "$ZSH_CUSTOM/themes/$1.zsh-theme" else source "$ZSH/themes/$1.zsh-theme" fi