2021-07-07 00:48:35 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Colorize with diffr
|
2022-06-27 13:03:46 +02:00
|
|
|
# TODO light mode
|
|
|
|
diff --color=always --minimal --unified=2 "$@" |
|
2022-07-05 11:40:11 +02: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)
|