From 2d1db487c768ea252ee5bdaf18226f25b5c76c19 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sun, 17 May 2020 11:17:10 +0200 Subject: [PATCH] Add case-insensitive autocompletion to zsh --- .config/zsh/.zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 70459837..70083110 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -19,6 +19,7 @@ HISTFILE=~/.cache/zsh/history # Basic auto/tab complete: autoload -U compinit zstyle ':completion:*' menu select +zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' zmodload zsh/complist compinit _comp_options+=(globdots) # Include hidden files.