Autosuggestions wip

This commit is contained in:
Mark Vainomaa 2018-02-03 15:40:21 +02:00
parent e67370ec75
commit 8e85fd69a5
Signed by: mikroskeem
GPG Key ID: 1B3F9523B542D315
3 changed files with 10 additions and 0 deletions

View File

@ -54,6 +54,7 @@ source "${ZSHUPER_DIR}/modules/aliases.zsh"
source "${ZSHUPER_DIR}/modules/compinit.zsh"
source "${ZSHUPER_DIR}/modules/directories.zsh"
source "${ZSHUPER_DIR}/modules/editor.zsh"
source "${ZSHUPER_DIR}/modules/hastebin.zsh"
source "${ZSHUPER_DIR}/modules/history.zsh"
source "${ZSHUPER_DIR}/modules/keys.zsh"
source "${ZSHUPER_DIR}/modules/new-scratch.zsh"
@ -61,3 +62,6 @@ source "${ZSHUPER_DIR}/modules/pacman.zsh"
source "${ZSHUPER_DIR}/modules/rationalize-dot.zsh"
source "${ZSHUPER_DIR}/modules/new-scratch.zsh"
source "${ZSHUPER_DIR}/modules/use-zaw-search.zsh"
# Plugin configurations
source "${ZSHUPER_DIR}/modules/configurations/autosuggest.zsh"

View File

@ -0,0 +1,5 @@
#
# zsh autosuggest plugin configuration
#
ZSH_AUTOSUGGEST_USE_ASYNC=1

View File

@ -16,4 +16,5 @@ ZSHUPER_PLUGINS=(
gradle/gradle-completion
#zsh-users/zsh-syntax-highlighting
zdharma/fast-syntax-highlighting
#zsh-users/zsh-autosuggestions # TODO: Fix this plugin not highlighting properly
)