Fix for Linux and make consistent

This commit is contained in:
Loic Nageleisen 2021-03-02 12:41:07 +01:00
parent e317caaa8f
commit 9ca56d83c7
42 changed files with 106 additions and 52 deletions

View file

@ -11,4 +11,8 @@ esac
alias ll="ls -l"
alias tree="tree -C"
which colordiff 2>&1 >/dev/null && alias diff="colordiff"
if command -v colordiff 2>&1 >/dev/null; then
alias diff="colordiff"
fi
# vim: ft=bash