1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 14:40:27 +00:00
prezto/modules/syntax-highlighting/init.zsh

22 lines
531 B
Bash
Raw Normal View History

2012-03-29 14:47:30 +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.
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-07-23 19:00:44 +00:00
# Set the highlighters.
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