Browse Source

When the theme choice is left out, oh-my-zsh will not try to load it

Marius Ghita 13 years ago
parent
commit
a876f3e920
  1. 5
      oh-my-zsh.sh

5
oh-my-zsh.sh

@ -43,6 +43,9 @@ then @@ -43,6 +43,9 @@ then
source "$RANDOM_THEME"
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
if [ ! "$ZSH_THEME" = "" ]
then
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
fi
fi

Loading…
Cancel
Save