2012-03-29 14:47:30 +00:00
|
|
|
#
|
2012-09-03 20:08:39 +00:00
|
|
|
# Integrates zsh-syntax-highlighting into Prezto.
|
2012-03-29 14:47:30 +00:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
2012-09-03 20:08:39 +00:00
|
|
|
if ! zstyle -t ':prezto:module:syntax-highlighting' color; then
|
2012-07-23 19:00:44 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-08-28 00:32:50 +00:00
|
|
|
# Source module files.
|
2012-07-23 19:00:44 +00:00
|
|
|
source "${0:h}/external/zsh-syntax-highlighting.zsh"
|
2012-06-14 21:20:57 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Set the highlighters.
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle -a ':prezto:module:syntax-highlighting' highlighters 'ZSH_HIGHLIGHT_HIGHLIGHTERS'
|
2012-07-23 19:00:44 +00:00
|
|
|
if (( ${#ZSH_HIGHLIGHT_HIGHLIGHTERS[@]} == 0 )); then
|
|
|
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets cursor)
|
2012-03-29 14:47:30 +00:00
|
|
|
fi
|
|
|
|
|