dotfiles/zsh/.config/zsh/options.zsh

15 lines
329 B
Bash
Raw Normal View History

2022-03-15 19:59:34 +00:00
# Case insensitive completion for lowercase
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
# Highlighted tab selection
zstyle ':completion:*' menu yes select
# Friendly names in Antidote
zstyle ':antidote:bundle' use-friendly-names 'yes'
2023-03-14 14:57:38 +00:00
# Extended globs
setopt extendedglob
2022-03-15 19:59:34 +00:00
# Right indentation off
ZLE_RPROMPT_INDENT=0