]> arthur.barton.de Git - ax-zsh.git/blobdiff - core/50_completion/50_completion.zshrc
50_completion: Enable group descriptions
[ax-zsh.git] / core / 50_completion / 50_completion.zshrc
index d1df7b8220d28df2ac1e244620ab90d6804a43d9..9d9dedb892b5085ef7bbc0910f8083f58f516901 100644 (file)
@@ -1,21 +1,50 @@
 # AX-ZSH: Alex' Modular ZSH Configuration
 # 50_completion.zshrc: Setup completion
 
-autoload -U compinit
+autoload -Uz compinit
 
 setopt completealiases
 
+zstyle ':completion:*' completer _complete _ignored _correct _approximate
+
+zstyle ':completion:*' accept-exact '*(N)'
 zstyle ':completion:*' list-colors ''
 zstyle ':completion:*' menu select
 zstyle ':completion:*' special-dirs true
+zstyle ':completion:*' group-name ''
+zstyle ':completion:*' squeeze-slashes true
+
+zstyle ':completion:*:descriptions' format %B%d%b
 
 # Use caching so that commands like apt and dpkg completions are useable
-zstyle ':completion::complete:*' use-cache 1
-zstyle ':completion::complete:*' cache-path "$ZSH_CACHE_DIR"
+zstyle ':completion:*' use-cache on
+zstyle ':completion:*' cache-path "$ZSH_CACHE_DIR"
+
+# Manual pages
+zstyle ':completion:*:manuals.*' insert-sections true
+
+# Don't complete uninteresting users
+zstyle ':completion:*:*:*:users' ignored-patterns \
+       adm amanda amavis apache arpwatch at avahi avahi-autoipd \
+       beaglidx bin bind cacti canna clamav colord daapd daemon dbus \
+       distcache dnsmasq dovecot dovenull fax fetchmail firebird \
+       ftp games gdm gkrellmd gnats gopher hacluster haldaemon halt \
+       hsqldb ident irc junkbust kdm ldap libuuid libvirt-qemu list \
+       logcheck lp mail mailman mailnull man messagebus mldonkey mysql \
+       nagios named netdump news nfsnobody nobody nscd ntp nut nx \
+       obsrun oident openvpn operator pcap polkitd postfix postgres \
+       postgrey privoxy proxy pvm quagga radvd rpc rpcuser rpm rtkit \
+       rwhod sbuild scard shutdown squid sshd statd stunnel4 svn sync \
+       sys telnetd telnetd-ssl tftp usbmux uucp vcsa www-data wwwrun \
+       xfs xrdp zabbix \
+       '_*' '*$' 'debian-*' 'Debian-*'
+
+# Ignore completion functions
+zstyle ':completion:*:functions' ignored-patterns '_*'
 
 # Save the location of the current completion dump file.
 if [[ -z "$ZSH_COMPDUMP" ]]; then
-       ZSH_COMPDUMP="${ZDOTDIR:-$HOME}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
+       ZSH_COMPDUMP="$ZSH_CACHE_DIR/zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
 fi
 
 # Initialize ZSH completion system