10 lines
473 B
Bash
10 lines
473 B
Bash
# Shell options
|
|
|
|
setopt glob_dots # no special treatment for file names with a leading dot
|
|
setopt auto_menu # show completion menu on successive tab presses
|
|
|
|
# Completion styling
|
|
zstyle ':completion:*' menu select # arrow-navigable menu with highlight
|
|
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" # color completions using LS_COLORS
|
|
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' # case-insensitive matching
|