zsh: Fix plugin load order
Alan Pearce alan@alanpearce.uk
Fri, 28 Apr 2017 09:29:24 +0200
1 files changed, 6 insertions(+), 6 deletions(-)
jump to
M zsh/.config/zsh/.zshrc → zsh/.config/zsh/.zshrc
@@ -3,10 +3,10 @@ source $ZPLUG_HOME/init.zsh zplug "zsh-users/zsh-completions", depth:1, defer:0 zplug "junegunn/fzf-bin", from:gh-r, as:command, rename-to:fzf -zplug "junegunn/fzf", as:plugin, use:"shell/*.zsh", defer:2 +zplug "junegunn/fzf", as:plugin, use:"shell/*.zsh" zplug "junegunn/fzf", as:command, use:"bin/*" zplug "caarlos0/zsh-open-pr", as:plugin -zplug "zdharma/fast-syntax-highlighting", as:plugin +zplug "zdharma/fast-syntax-highlighting", as:plugin, defer:2 zplug "unixorn/tumult.plugin.zsh", as:plugin, if:"[[ $os -eq darwin ]]" if [[ -n $commands[nix-env] ]] then @@ -14,10 +14,10 @@ zplug "spwhitt/nix-zsh-completions", as:plugin fpath=($fpath $ZPLUG_REPOS/spwhitt/nix-zsh-completions) fi -zplug "plugins/yarn", from:oh-my-zsh, defer:2, if:"[[ -n $commands[yarn] ]]", defer:2 -zplug "lukechilds/zsh-better-npm-completion", if:"[[ -n $commands[npm] ]]", defer:2 -zplug "hlissner/zsh-autopair", defer:2 -zplug "${GOPATH:=$HOME/go}/src/github.com/motemen/ghq/zsh/", from:local, if:"[[ -n $commands[ghq] ]]", defer:2 +zplug "plugins/yarn", from:oh-my-zsh, if:"[[ -n $commands[yarn] ]]" +zplug "lukechilds/zsh-better-npm-completion", if:"[[ -n $commands[npm] ]]" +zplug "hlissner/zsh-autopair" +zplug "${GOPATH:=$HOME/go}/src/github.com/motemen/ghq/zsh/", from:local, if:"[[ -n $commands[ghq] ]]" HISTSIZE=3000 SAVEHIST=10000