This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/syntax-highlighting/init.zsh

18 lines
463 B
Bash
Raw Normal View History

2012-03-29 10:47:30 -04:00
#
# Integrates zsh-syntax-highlighting into Oh My Zsh.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2012-03-28 12:41:39 -04:00
if zstyle -t ':omz:module:syntax-highlighting' color; then
2012-03-29 10:47:30 -04:00
source "${0:h}/external/zsh-syntax-highlighting.zsh"
# 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
2012-03-29 10:47:30 -04:00
fi