aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-08-16 22:38:03 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-08-16 22:38:03 -0300
commit6b438426b01c7c9544654d1e58d82c57b199f7ec (patch)
tree5200cd1d0baa52be7999f83132415466a8912abf
parent73eb4df9dd8c31cc7165de2464e8cf37bd2df228 (diff)
downloadmetadot-6b438426b01c7c9544654d1e58d82c57b199f7ec.tar.gz
metadot-6b438426b01c7c9544654d1e58d82c57b199f7ec.tar.bz2
Fixing zsh completion loading
-rw-r--r--modules/profile/zshrc.dot.link6
1 files changed, 3 insertions, 3 deletions
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)