From 4b0a6f9c7cf2c2a9c73e3a253dc7b0a0a73853e0 Mon Sep 17 00:00:00 2001 From: Lucas Sunsi Date: Thu, 31 May 2018 21:17:04 -0300 Subject: [PATCH] Source syntax-highlighting after completion syntax-highlighting should be sourced after compinit (see https://github.com/zsh-users/zsh-syntax-highlighting#why-must-zsh-syntax-highlightingzsh-be-sourced-at-the-end-of-the-zshrc-file), and history-substring-search should be sourced after syntax-highlighting (see https://github.com/zsh-users/zsh-history-substring-search#usage). Closes #276 --- templates/zimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/zimrc b/templates/zimrc index 7c6ffcc..8800b41 100644 --- a/templates/zimrc +++ b/templates/zimrc @@ -12,7 +12,7 @@ # The second line of modules may depend on options set by modules in the first # line. These dependencies are noted on the respective module's README.md. zmodules=(directory environment git git-info history input utility custom \ - syntax-highlighting history-substring-search prompt completion) + prompt completion syntax-highlighting history-substring-search ) ###################