blob: f5f94df468eee14eb00423b732fa61d1211171dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
## vim:ft=zsh
zstyle :compinstall filename ~/.zshrc
zstyle ':completion:*' cache-path ~/var/cache/zsh
zstyle ':completion:*' use-cache true
check_com -c dircolors && zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
# Mark the current selection when tabbing through possible completions
zstyle ':completion:*' menu select=1
# Complete uppercase names with lowercase and spaces with _
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z} m:_=\\\ ' ''
# Be verbose
char=${ps_yellow}$(zchar compdelim)${ps_reset}
zstyle ':completion:*' verbose true
zstyle ':completion:*:descriptions' format \
"$char %d $char"
zstyle ':completion:*:messages' format \
"$char %d $char"
zstyle ':completion:*:corrections' format \
"$char %d $char"
zstyle ':completion:*:warnings' format \
"${ps_red}no match:${ps_reset} %d"
zstyle ':completion:*' group-name ''
unset char
# program-specific settings
zstyle ':completion:*:*:kill:*' menu yes
zstyle ':completion:*:*:(todo|td*):*:items' menu yes
_hosts() { compadd derf.homelinux.org kraftwerk saviour kappa nemesis aneurysm;}
if [[ -r $compdump ]] {
compinit -C -d $compdump
} else {
echo -n "Creating completion cache..."
compinit -d $compdump
echo
}
|