From 2144737fdaf5f43da6fd8f561b80b9931b41ffa5 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Tue, 18 Jun 2024 22:38:09 +0200 Subject: [PATCH] Rimozione match-list e ottimizzazione completion con cache per hangup shell. --- .gitignore | 1 + zsh/distro/archlinux.base.zsh | 6 +++--- zshrc | 3 --- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 0ccee94..778c985 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ vim/plugged vim/pack vim/bundle vim/spell +vim/coc-settings.json diff --git a/zsh/distro/archlinux.base.zsh b/zsh/distro/archlinux.base.zsh index d312d78..c4265ab 100644 --- a/zsh/distro/archlinux.base.zsh +++ b/zsh/distro/archlinux.base.zsh @@ -21,13 +21,13 @@ setopt autocd setopt inc_append_history setopt histignorespace # Ignore putting in history commands beginning with a space -zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Zaz}' # Case insensitive completion +#zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Zaz}' # Case insensitive completion zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" # Color completion zstyle ':completion:*' rehash true # automatically updates new paths # Speed completion zstyle ':completion:*' accept-exact '*(N)' -zstyle ':completion:*' use-cache on -zstyle ':completion:*' cache-path ~/.zsh/cache +#zstyle ':completion:*' use-cache on +#zstyle ':completion:*' cache-path ~/.zsh/cache # History HISTFILE=~/.zhistory diff --git a/zshrc b/zshrc index 10e8ba8..b76067e 100644 --- a/zshrc +++ b/zshrc @@ -13,9 +13,6 @@ compinit autoload -U +X bashcompinit bashcompinit -# Uncomment the following line to use case-sensitive completion. -CASE_SENSITIVE="true" - # zsh packages from system if [[ -f ${DOTFILES}/zsh/distro.base.zsh ]]; then source ${DOTFILES}/zsh/distro.base.zsh