Skip to content

Commit

Permalink
Moved compinit call back to oh-my-zsh.sh, after plugins are loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
oknowton committed Apr 12, 2011
1 parent 235733e commit 16ac094
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/completion.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,3 @@ zstyle ':completion:*:*:*:users' ignored-patterns \
# ... unless we really want to.
zstyle '*' single-ignored show

# Load and run compinit
autoload -U compinit
compinit -i

4 changes: 4 additions & 0 deletions oh-my-zsh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 16ac094

Please sign in to comment.