From 74bf2539502fa05ce9fa6fab2fc898b3701810ef Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Thu, 18 Mar 2021 23:40:47 -0700 Subject: [PATCH] Disable completion based prediction --- dotfiles/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 95ee6dd..3b3fb12 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -123,8 +123,8 @@ if [[ $- == *i* ]] ; then if test -f /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh ; then # Works well for solarized ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=10" - # Strategy - ZSH_AUTOSUGGEST_STRATEGY=(history completion) + # Strategy -- note that 'completion' is slow AF + ZSH_AUTOSUGGEST_STRATEGY=(history) source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh fi fi # End interactive-only block