From 71c155a20fac5c2be9d439dbb3f54b35188e719b Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 14 Jan 2020 14:58:05 +0000 Subject: [PATCH] Re-enable completion and case insensitivity --- tag-zsh/zsh/configs/completion.zsh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tag-zsh/zsh/configs/completion.zsh diff --git a/tag-zsh/zsh/configs/completion.zsh b/tag-zsh/zsh/configs/completion.zsh new file mode 100644 index 00000000..08d085d5 --- /dev/null +++ b/tag-zsh/zsh/configs/completion.zsh @@ -0,0 +1,6 @@ +autoload -U compinit +compinit + +## case-insensitive (all), partial-word and then substring completion +zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' \ + 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' \ No newline at end of file