Skip to content

Instantly share code, notes, and snippets.

@choan
Created December 2, 2021 15:09
Show Gist options
  • Save choan/28e3fcd50bb8e7eaaaae1d364704a5ea to your computer and use it in GitHub Desktop.
Save choan/28e3fcd50bb8e7eaaaae1d364704a5ea to your computer and use it in GitHub Desktop.
Make zsh tab completion case insensitive
# to make tab completion case insensitive
# put this into your ~/.zshrc
# https://superuser.com/questions/1092033/
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
autoload -Uz compinit && compinit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment