9 lines
288 B
Bash
9 lines
288 B
Bash
# load our own completion functions
|
|
fpath=(~/.config/zsh/completion-scripts $fpath)
|
|
|
|
autoload -Uz compinit && compinit
|
|
|
|
## case-insensitive (all), partial-word and then substring completion
|
|
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' \
|
|
'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|