blob: e6e8460bd4a2143977a3d042327e31661a59c853 (
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
# Also complete uppercase names with lowercase
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' ''
_hosts() { compadd alpha beta gamma kraftwerk delta epsilon zeta eta saviour theta iota kappa nemesis lambda my aneurysm;}
|