From 2deb497b0e4bb101f11243c129bd3d157fc064f0 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 2 Sep 2021 15:02:24 +0200 Subject: [PATCH] zsh: use case-insensitive completions --- zsh/zshrc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index b31b4c9..2d12e1f 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -17,12 +17,9 @@ HISTFILE="${XDG_DATA_HOME:-$HOME/.local/share}/zsh/history" HISTSIZE=1000000 SAVEHIST=1000000 - - - -#autoload -U compinit +autoload -Uz compinit && compinit +zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' zstyle ':completion:*' menu select -#autoload -U compinit && compinit # bindkey -M menuselect 'h' vi-backward-char # bindkey -M menuselect 'k' vi-up-line-or-history