dotfiles/.config/shell/zshrc.d/9-configure-autocompletion.zsh

17 lines
527 B
Bash
Raw Normal View History

2019-07-24 09:32:04 +00:00
#!/bin/zsh
#
# Speed up autocomplete, force prefix mapping
zstyle ':completion:*' accept-exact '*(N)'
zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path ~/.zsh/cache
2019-07-24 08:54:06 +00:00
# shellcheck disable=SC2016
2019-07-24 09:32:04 +00:00
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
2019-07-24 09:32:04 +00:00
for completion in ~/.zsh-completions/*; do
2019-07-24 08:54:06 +00:00
# shellcheck source=/dev/null
source "$completion"
done
2019-07-24 05:33:28 +00:00
fi