1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +01:00

More configuration for the zsh autocomplete.

This commit is contained in:
2019-12-17 10:55:52 +01:00
parent 9220926d0e
commit 7386a5836a

View File

@@ -50,6 +50,15 @@ for plugin in "${plugins[@]}"; do
fi
done
## Autosuggest plugin configuration
# Consider autocomplete in completion
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
# Enable async suggestions
ZSH_AUTOSUGGEST_USE_ASYNC=1
# No completions for long commands
ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=50
bindkey -e
# zshrc aliases
alias ls='ls --color=auto'