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

22 lines
528 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-07-23 15:00:44 -04:00
# Return if requirements are not found.
if ! zstyle -t ':omz:module:syntax-highlighting' color; then
return 1
fi
2012-08-27 20:32:50 -04:00
# Source module files.
2012-07-23 15:00:44 -04:00
source "${0:h}/external/zsh-syntax-highlighting.zsh"
2012-07-23 15:00:44 -04:00
# 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)
2012-03-29 10:47:30 -04:00
fi