[zsh] add colordiff alternative

This commit is contained in:
Dmytro Meleshko 2019-06-15 16:39:07 +03:00
parent 1bb21839be
commit edf166391b

View file

@ -14,6 +14,10 @@ alias cdd='dirs -v'
alias grep='grep --color=auto'
if ! command_exists colordiff; then
alias colordiff='diff --color'
fi
# exa is a modern replacement for ls - https://the.exa.website/
if command_exists exa; then
alias ls="exa --classify --group-directories-first"