diff --git a/init.zsh b/init.zsh index 8af5827..b794cfe 100644 --- a/init.zsh +++ b/init.zsh @@ -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" diff --git a/modules/configurations/autosuggest.zsh b/modules/configurations/autosuggest.zsh new file mode 100644 index 0000000..a4905b9 --- /dev/null +++ b/modules/configurations/autosuggest.zsh @@ -0,0 +1,5 @@ +# +# zsh autosuggest plugin configuration +# + +ZSH_AUTOSUGGEST_USE_ASYNC=1 diff --git a/plugins.zsh b/plugins.zsh index 61bd471..2f3dc08 100644 --- a/plugins.zsh +++ b/plugins.zsh @@ -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 )