X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=core%2F50_completion%2F50_completion.zshrc;h=53fe50b7b0e972ae26d8cf9f12290f65d3ba8e88;hb=HEAD;hp=1869647da109695fdf2c1cf6901099c03d7fa20d;hpb=b668ba9456afc620d409b086a47bf261bc7c5283;p=ax-zsh.git diff --git a/core/50_completion/50_completion.zshrc b/core/50_completion/50_completion.zshrc deleted file mode 100644 index 1869647..0000000 --- a/core/50_completion/50_completion.zshrc +++ /dev/null @@ -1,38 +0,0 @@ -# AX-ZSH: Alex' Modular ZSH Configuration -# 50_completion.zshrc: Setup completion - -autoload -U compinit - -setopt completealiases - -zstyle ':completion:*' list-colors '' -zstyle ':completion:*' menu select -zstyle ':completion:*' special-dirs true - -# 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" - -# 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-*' - -# Save the location of the current completion dump file. -if [[ -z "$ZSH_COMPDUMP" ]]; then - ZSH_COMPDUMP="${ZDOTDIR:-$HOME}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}" -fi - -# Initialize ZSH completion system -compinit -d "$ZSH_COMPDUMP"