blob: 6a28e954f21d50670027141e856f8650c8f229a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
## vim:ft=zsh
zstyle :compinstall filename "$HOME/.zshrc"
ls-colors: 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:_= m:{a-z}={A-Z}' ''
_hosts() { compadd derf.homelinux.org kraftwerk saviour kappa nemesis aneurysm;}
|