11 lines
356 B
Bash
11 lines
356 B
Bash
#!/bin/zsh
|
|
|
|
autoload -Uz compinit && compinit
|
|
zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}'
|
|
zstyle ':completion:*' menu select
|
|
|
|
# bindkey -M menuselect 'h' vi-backward-char
|
|
# bindkey -M menuselect 'k' vi-up-line-or-history
|
|
# bindkey -M menuselect 'l' vi-forward-char
|
|
# bindkey -M menuselect 'j' vi-down-line-or-history
|
|
|