diff options
author | Pat Regan <thehead@patshead.com> | 2011-04-12 09:28:15 -0400 |
---|---|---|
committer | Pat Regan <thehead@patshead.com> | 2011-04-12 09:28:15 -0400 |
commit | 16ac094a43052fb57eda9503174006a84a61a414 (patch) | |
tree | da6e6d4221ec4e25bb2eaa9a3f5378dcddf5580b /oh-my-zsh.sh | |
parent | 235733e5e224539cf5002a02694d021902fd9550 (diff) | |
download | zsh-16ac094a43052fb57eda9503174006a84a61a414.tar.gz zsh-16ac094a43052fb57eda9503174006a84a61a414.tar.bz2 zsh-16ac094a43052fb57eda9503174006a84a61a414.zip |
Moved compinit call back to oh-my-zsh.sh, after plugins are loaded
Diffstat (limited to 'oh-my-zsh.sh')
-rw-r--r-- | oh-my-zsh.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 291772dfe..84a850ca3 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -14,6 +14,10 @@ for config_file ($ZSH/custom/*.zsh) source $config_file plugin=${plugin:=()} for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh +# Load and run compinit +autoload -U compinit +compinit -i + # Load the theme source "$ZSH/themes/$ZSH_THEME.zsh-theme" |