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

15 lines
382 B
Bash

# 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'
# Syntax highlighters
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern regexp root line)
# Right indentation off
ZLE_RPROMPT_INDENT=0