From 95300f221cd0042f16f2a0824c5d088cd270673a Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Tue, 22 Sep 2020 01:23:28 +0200 Subject: [PATCH] zsh: Remove remnant from d5dda4d Forgot to remove the source of zsh-history-substring-search in d5dda4d. --- .config/zsh/.zshrc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 04809b4..f3389c7 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -138,18 +138,12 @@ comp-source "$ZSH_CONF/zsh-autosuggestions/zsh-autosuggestions.zsh" comp-source "$ZSH_CONF/completion.zsh" # comp-source "$ZSH_CONF/zsh-async/async.zsh" # async_init -### syntax-highlight > history-substring > keys +### syntax-highlight > keys # syntax highlighting if [ -e "$ZSH_CONF/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" ]; then comp-source "$ZSH_CONF/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" comp-source "$ZSH_CONF/zsh-syntax-highlighting.zsh-theme" fi -# history substr search -if [ -e "$ZSH_CONF/zsh-history-substring-search/zsh-history-substring-search.zsh" ]; then - comp-source "$ZSH_CONF/zsh-history-substring-search/zsh-history-substring-search.zsh" - HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE=true - HISTORY_SUBSTRING_SEARCH_FUZZY=true -fi comp-source "$ZSH_CONF/keys.zsh" # Reenable fzf-tab since `bindkey -v` seems to deactivate it enable-fzf-tab