]> arthur.barton.de Git - ax-zsh.git/blob - core/50_completion/50_completion.zshrc
50_completion: Update compsys options
[ax-zsh.git] / core / 50_completion / 50_completion.zshrc
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # 50_completion.zshrc: Setup completion
3
4 autoload -Uz compinit
5
6 setopt completealiases
7
8 zstyle ':completion:*' completer _complete _ignored _correct _approximate
9
10 zstyle ':completion:*' accept-exact '*(N)'
11 zstyle ':completion:*' list-colors ''
12 zstyle ':completion:*' menu select
13 zstyle ':completion:*' special-dirs true
14 zstyle ':completion:*' squeeze-slashes true
15
16 # Use caching so that commands like apt and dpkg completions are useable
17 zstyle ':completion:*' use-cache on
18 zstyle ':completion:*' cache-path "$ZSH_CACHE_DIR"
19
20 # Don't complete uninteresting users
21 zstyle ':completion:*:*:*:users' ignored-patterns \
22         adm amanda amavis apache arpwatch at avahi avahi-autoipd \
23         beaglidx bin bind cacti canna clamav colord daapd daemon dbus \
24         distcache dnsmasq dovecot dovenull fax fetchmail firebird \
25         ftp games gdm gkrellmd gnats gopher hacluster haldaemon halt \
26         hsqldb ident irc junkbust kdm ldap libuuid libvirt-qemu list \
27         logcheck lp mail mailman mailnull man messagebus mldonkey mysql \
28         nagios named netdump news nfsnobody nobody nscd ntp nut nx \
29         obsrun oident openvpn operator pcap polkitd postfix postgres \
30         postgrey privoxy proxy pvm quagga radvd rpc rpcuser rpm rtkit \
31         rwhod sbuild scard shutdown squid sshd statd stunnel4 svn sync \
32         sys telnetd telnetd-ssl tftp usbmux uucp vcsa www-data wwwrun \
33         xfs xrdp zabbix \
34         '_*' '*$' 'debian-*' 'Debian-*'
35
36 # Ignore completion functions
37 zstyle ':completion:*:functions' ignored-patterns '_*'
38
39 # Save the location of the current completion dump file.
40 if [[ -z "$ZSH_COMPDUMP" ]]; then
41         ZSH_COMPDUMP="$ZSH_CACHE_DIR/zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
42 fi
43
44 # Initialize ZSH completion system
45 compinit -d "$ZSH_COMPDUMP"