Add a zstyle to set the syntax highlighter

This commit is contained in:
Sorin Ionescu 2012-06-14 17:20:57 -04:00
parent e095911cda
commit 13c1c1996d
1 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,11 @@
if zstyle -t ':omz:module:syntax-highlighting' color; then
source "${0:h}/external/zsh-syntax-highlighting.zsh"
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
# Set the highlighters.
zstyle -a ':omz:module:syntax-highlighting' highlighters 'ZSH_HIGHLIGHT_HIGHLIGHTERS'
if (( ${#ZSH_HIGHLIGHT_HIGHLIGHTERS[@]} == 0 )); then
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets cursor)
fi
fi