Commit 8bc60824 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #618 from fceccon/custom-theme

Use a custom version of a theme if the user has it
parents 480d1247 2ca2ad3f
......@@ -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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment