From b5676aa2aaa0ce55cdf141f35c71e22e7ab76d8e Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 2 Jul 2024 23:06:15 +0200 Subject: [PATCH] fix: reenable zsh case insensitive completion --- users/common/shells/zsh/zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/users/common/shells/zsh/zshrc b/users/common/shells/zsh/zshrc index 712a1f9..3e3e595 100644 --- a/users/common/shells/zsh/zshrc +++ b/users/common/shells/zsh/zshrc @@ -5,6 +5,9 @@ zstyle ':completion:*' insert-tab false # provide verbose completion information zstyle ':completion:*' verbose true +# match uppercase from lowercase +zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' + # provide .. as a completion zstyle ':completion:*' special-dirs ..