21 lines
745 B
Bash
21 lines
745 B
Bash
# Work with hidden files
|
|
_comp_options+=(globdots)
|
|
|
|
# Autocomplete cache options
|
|
zstyle ':completion:*' use-cache on
|
|
zstyle ':completion:*' cache-path "$XDG_CACHE_HOME/zsh/.zcompcache"
|
|
|
|
# Colors
|
|
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
|
|
# Menu options
|
|
zstyle ':completion:*' menu select
|
|
zstyle ':completion:*:*:*:*:descriptions' format '%F{green}-- %d --%f'
|
|
zstyle ':completion:*:*:*:*:corrections' format '%F{yellow}!- %d (errors: %e) -!%f'
|
|
zstyle ':completion:*:messages' format ' %F{purple} -- %d --%f'
|
|
zstyle ':completion:*:warnings' format ' %F{red}-- no matches found --%f'
|
|
# Group results
|
|
zstyle ':completion:*' group-name ''
|
|
|
|
# Autocomplete options
|
|
zstyle ':completion:*' completer _extensions _complete _approximate
|