16 lines
527 B
Bash
16 lines
527 B
Bash
#!/bin/zsh
|
|
#
|
|
# Speed up autocomplete, force prefix mapping
|
|
zstyle ':completion:*' accept-exact '*(N)'
|
|
zstyle ':completion:*' use-cache on
|
|
zstyle ':completion:*' cache-path ~/.zsh/cache
|
|
# shellcheck disable=SC2016
|
|
zstyle -e ':completion:*:default' list-colors 'reply=("${PREFIX:+=(#bi)($PREFIX:t)*==34=34}:${(s.:.)LS_COLORS}")'
|
|
|
|
# Load any custom zsh completions we've installed
|
|
if [ -d ~/.zsh-completions ]; then
|
|
for completion in ~/.zsh-completions/*; do
|
|
# shellcheck source=/dev/null
|
|
source "$completion"
|
|
done
|
|
fi
|