mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-10-14 15:49:09 +00:00
[#52] Add zstyles to configure syntax-highlighting
This commit is contained in:
@@ -13,9 +13,18 @@ fi
|
||||
# Source module files.
|
||||
source "${0:h}/external/zsh-syntax-highlighting.zsh"
|
||||
|
||||
# Set the highlighters.
|
||||
# Set highlighters.
|
||||
zstyle -a ':prezto:module:syntax-highlighting' highlighters 'ZSH_HIGHLIGHT_HIGHLIGHTERS'
|
||||
if (( ${#ZSH_HIGHLIGHT_HIGHLIGHTERS[@]} == 0 )); then
|
||||
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main)
|
||||
fi
|
||||
|
||||
# Set highlighting styles.
|
||||
typeset -A syntax_highlighting_styles
|
||||
zstyle -a ':prezto:module:syntax-highlighting' styles 'syntax_highlighting_styles'
|
||||
for syntax_highlighting_style in "${(k)syntax_highlighting_styles[@]}"; do
|
||||
ZSH_HIGHLIGHT_STYLES[$syntax_highlighting_style]=\
|
||||
"$syntax_highlighting_styles[$syntax_highlighting_style]"
|
||||
done
|
||||
unset syntax_highlighting_style{s,}
|
||||
|
||||
|
Reference in New Issue
Block a user