13 lines
693 B
Bash
13 lines
693 B
Bash
|
zstyle ':completion:*' auto-description 'specify: %d'
|
||
|
zstyle ':completion:*' completer _expand _complete _ignored _correct _approximate
|
||
|
zstyle ':completion:*' format 'Completing %d'
|
||
|
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
||
|
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
|
||
|
zstyle ':completion:*' max-errors 1
|
||
|
zstyle ':completion::complete:*' use-cache 1
|
||
|
zstyle ':vcs_info:*' enable git
|
||
|
zstyle ':vcs_info:git*+set-message:*' hooks untracked-git
|
||
|
zstyle ':vcs_info:*' check-for-changes true
|
||
|
zstyle ':vcs_info:*' unstagedstr '!'
|
||
|
zstyle ':vcs_info:*' stagedstr '+'
|
||
|
zstyle ':vcs_info:*' formats "%f%s(%F{red}%r/%b%f)%c "$'\n'" %F{#bb33bb}% %S%f"
|