From c0d082ced9d28c94ce2f940154474d7d42857f04 Mon Sep 17 00:00:00 2001 From: Morgan Wattiez Date: Fri, 1 Mar 2019 22:20:11 +0100 Subject: [PATCH] add colored diff command --- Brewfile | 1 + dot_zsh_aliases | 1 + 2 files changed, 2 insertions(+) diff --git a/Brewfile b/Brewfile index c842ef0..3690d81 100644 --- a/Brewfile +++ b/Brewfile @@ -31,3 +31,4 @@ brew "tig" brew "realpath" brew "mackup" brew "lynx" +brew "colordiff" diff --git a/dot_zsh_aliases b/dot_zsh_aliases index e1440f6..9768244 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -23,6 +23,7 @@ alias hack='hacker' alias done='task_done' alias h='cd $HOME' alias sshpub='cat ~/.ssh/id_rsa.pub' +alias diff='colordiff' # Show/hide hidden files in Finder alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"