zsh: diabled zsh auto complete as it is slow

This commit is contained in:
Tigor Hutasuhut 2024-07-02 14:05:44 +07:00
parent e1ad45ea54
commit 23f6d58671

View file

@ -40,13 +40,13 @@
save = 40000; save = 40000;
size = 40000; size = 40000;
}; };
initExtraFirst = '' initExtraFirst = /*bash*/ ''
_ZSH_COLOR_SCHEME_FILE=$HOME/.cache/wallust/sequences _ZSH_COLOR_SCHEME_FILE=$HOME/.cache/wallust/sequences
if [ -f "$_ZSH_COLOR_SCHEME_FILE" ]; then if [ -f "$_ZSH_COLOR_SCHEME_FILE" ]; then
(cat "$_ZSH_COLOR_SCHEME_FILE" &) (cat "$_ZSH_COLOR_SCHEME_FILE" &)
fi fi
''; '';
initExtra = '' initExtra = /*bash*/ ''
bindkey '^I' menu-complete bindkey '^I' menu-complete
bindkey "$terminfo[kcbt]" reverse-menu-complete bindkey "$terminfo[kcbt]" reverse-menu-complete
''; '';
@ -57,7 +57,7 @@
"zsh-users/zsh-autosuggestions kind:defer" "zsh-users/zsh-autosuggestions kind:defer"
"zsh-users/zsh-history-substring-search kind:defer" "zsh-users/zsh-history-substring-search kind:defer"
"zsh-users/zsh-completions" "zsh-users/zsh-completions"
"marlonrichert/zsh-autocomplete" # "marlonrichert/zsh-autocomplete"
]; ];
}; };
}; };