When diffing files, I prefer to use git diff --color-words. Is there a way to make this the default format for diffs when using git add --patch or
git diff --color-words
git add --patch
In your $(HOME)/.gitconfig file add this
[color] diff = auto interactive = auto
This should do.