1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-02-08 20:25:22 +00:00

18 lines
259 B
Plaintext
Raw Normal View History

#
# Highlights diff output.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# function diff {
if zstyle -t ':prezto:module:utility:diff' color \
&& (( $+commands[colordiff] )); then
command colordiff "$@"
else
command diff "$@"
fi
# }