From: Silvio Rhatto Date: Sat, 17 Aug 2013 01:38:03 +0000 (-0300) Subject: Fixing zsh completion loading X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=6b438426b01c7c9544654d1e58d82c57b199f7ec;p=metadot.git Fixing zsh completion loading --- diff --git a/modules/profile/zshrc.dot.link b/modules/profile/zshrc.dot.link index 63d0dd7..0b8c1f1 100644 --- a/modules/profile/zshrc.dot.link +++ b/modules/profile/zshrc.dot.link @@ -14,6 +14,9 @@ HISTSIZE=1000 SAVEHIST=1000 HISTFILE=~/.zsh_history +# Add custom completion scripts +fpath=(~/.zsh/completion $fpath) + # Use modern completion system autoload -Uz compinit compinit @@ -35,6 +38,3 @@ zstyle ':completion:*' verbose true zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31' zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd' - -# Add custom completion scripts -fpath=(~/.zsh/completion $fpath)