2021-07-06 22:48:35 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Colorize with diffr
|
2022-06-27 11:03:46 +00:00
|
|
|
# TODO light mode
|
|
|
|
diff --color=always --minimal --unified=2 "$@" |
|
2022-07-05 09:40:11 +00:00
|
|
|
$(which diffr >/dev/null 2>&1 && test "$THEME" != "light" && echo 'diffr
|
|
|
|
--colors refine-added:none:background:0x33,0x66,0x33:bold
|
|
|
|
--colors added:none:background:0x33,0x44,0x33
|
|
|
|
--colors refine-removed:none:background:0x66,0x33,0x33:bold
|
|
|
|
--colors removed:none:background:0x44,0x33,0x33' || echo cat)
|