summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPat Regan <thehead@patshead.com>2011-04-28 19:12:05 -0400
committerPat Regan <thehead@patshead.com>2011-04-28 19:12:05 -0400
commit58a7cf19b7af136c5f59ee706ffe4772871f00fa (patch)
treed7b913504d5e30d68527487be44564ad8f487e98
parent57d699ee33e5d4673d8c6a2a9ba42bd25d7b737c (diff)
downloadzsh-58a7cf19b7af136c5f59ee706ffe4772871f00fa.tar.gz
zsh-58a7cf19b7af136c5f59ee706ffe4772871f00fa.tar.bz2
zsh-58a7cf19b7af136c5f59ee706ffe4772871f00fa.zip
Move sourcing of custom to below plugins
-rw-r--r--oh-my-zsh.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh
index c7a4c320a..bf108afce 100644
--- a/oh-my-zsh.sh
+++ b/oh-my-zsh.sh
@@ -15,9 +15,6 @@ for plugin ($plugins) fpath=($ZSH/plugins/$plugin $fpath)
autoload -U compinit
compinit -i
-# Load all of your custom configurations from custom/
-for config_file ($ZSH/custom/*.zsh) source $config_file
-
# Load all of the plugins that were defined in ~/.zshrc
for plugin ($plugins); do
if [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
@@ -25,6 +22,9 @@ for plugin ($plugins); do
fi
done
+# Load all of your custom configurations from custom/
+for config_file ($ZSH/custom/*.zsh) source $config_file
+
# Load the theme
source "$ZSH/themes/$ZSH_THEME.zsh-theme"