Update default color to 'emacs' which both chroma & pygmentize support

master
Aaron N. Brock 7 years ago
parent b776f1d20f
commit c194b51560
  1. 7
      plugins/colorize/colorize.plugin.zsh

@ -28,14 +28,9 @@ colorize_via_pygmentize() {
# is set, use that theme instead. Otherwise,
# use the default.
if [ -z $ZSH_COLORIZE_STYLE ]; then
if [[ $ZSH_COLORIZE_TOOL == "pygmentize" ]]; then
ZSH_COLORIZE_STYLE="default"
else
# Choosing 'emacs' to match pygmentize's default as per:
# https://github.com/pygments/pygments/blob/master/pygments/styles/default.py#L19
# Both pygmentize & chroma support 'emacs'
ZSH_COLORIZE_STYLE="emacs"
fi
fi
# pygmentize stdin if no arguments passed
if [ $# -eq 0 ]; then

Loading…
Cancel
Save