prezto/modules/syntax-highlighting
2013-11-29 20:36:07 -05:00
..
external@f289a9f8e7 Update external syntax-highlighting 2013-11-29 20:36:07 -05:00
init.zsh Stop module loading when external code fails to source 2013-08-27 22:22:55 -04:00
README.md [#52] Add zstyles to configure syntax-highlighting 2013-04-26 19:47:07 -04:00

Syntax Highlighting

Integrates zsh-syntax-highlighting into Prezto.

This module should be loaded second to last, where last is the prompt module, unless used in conjuncture with the history-substring-search module where it must be loaded before it.

Contributors

New features and bug fixes should be submitted to the zsh-syntax-highlighting project according to its rules and regulations. This module will be synchronized against it.

Settings

Highlighting

To enable highlighting for this module only, add the following line to zpreztorc:

zstyle ':prezto:module:syntax-highlighting' color 'yes'

Highlighters

Syntax highlighting is accomplished by pluggable highlighters. This module enables the main, brackets, and cursor highlighters by default.

To enable all highlighters, add the following to zpreztorc:

zstyle ':prezto:module:syntax-highlighting' highlighters \
  'main' \
  'brackets' \
  'pattern' \
  'cursor' \
  'root'

Highlighting Styles

Each syntax highlighter defines styles used to highlight tokens.

To highlight, for example, builtins, commands, and functions in blue instead of green, add the following to zpreztorc:

zstyle ':prezto:module:syntax-highlighting' styles \
  'builtin' 'bg=blue' \
  'command' 'bg=blue' \
  'function' 'bg=blue'

Authors

The authors of this module should be contacted via the issue tracker.