26 lines
1.2 KiB
Bash
26 lines
1.2 KiB
Bash
WORDCHARS='*?_-.[]~&;!#$%^(){}<>'
|
|
|
|
zstyle '*' single-ignored show
|
|
zstyle ':completion:*' special-dirs true
|
|
zstyle ':completion:*' list-colors "${(s/:/)LS_COLORS}"
|
|
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
|
|
zstyle ':completion:*' menu no
|
|
zstyle ':completion:*' use-cache yes
|
|
zstyle ':completion:*' cache-path "${XDG_CACHE_HOME}/zsh/.zcompcache"
|
|
|
|
zstyle ':completion:*:git-checkout:*' sort false
|
|
zstyle ':completion:*:descriptions' format '[%d]'
|
|
zstyle ':completion:*:*:*:*:processes' command "ps -u $USERNAME -o pid,user,comm -ww"
|
|
zstyle ':completion:*:*:*:users' ignored-patterns \
|
|
adm amanda apache at avahi avahi-autoipd beaglidx bin cacti canna \
|
|
clamav daemon dbus distcache dnsmasq dovecot fax ftp games gdm \
|
|
gkrellmd gopher hacluster haldaemon halt hsqldb ident junkbust kdm \
|
|
ldap lp mail mailman mailnull man messagebus mldonkey mysql nagios \
|
|
named netdump news nfsnobody nobody nscd ntp nut nx obsrun openvpn \
|
|
operator pcap polkitd postfix postgres privoxy pulse pvm quagga radvd \
|
|
rpc rpcuser rpm rtkit scard shutdown squid sshd statd svn sync tftp \
|
|
usbmux uucp vcsa wwwrun xfs '_*'
|
|
|
|
zmodload zsh/complist
|
|
_comp_options+=(globdots)
|