Skip to content

Commit

Permalink
feat: make matching truly insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
bklebe committed Nov 13, 2024
1 parent 9b51ab4 commit 05f303c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .config/zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ zmodload zsh/zprof

eval "$(mise activate zsh)"

zstyle ':completion:*' cache-path "$XDG_CACHE_HOME"/zsh/zcompcache
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}'

if type brew >/dev/null 2>&1; then
FPATH="$HOME/.config/zsh/functions/:$HOMEBREW_PREFIX/share/zsh/site-functions:${FPATH}"

Expand All @@ -16,6 +13,9 @@ if type brew >/dev/null 2>&1; then
. <(jj util completion zsh)
fi

zstyle ':completion:*' cache-path "$XDG_CACHE_HOME"/zsh/zcompcache
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'


# . "$(pack completion --shell zsh)"

Expand Down

0 comments on commit 05f303c

Please sign in to comment.