vimdiff disable/enable color coding
You can easily deactivate the coloring in vim
:diffoff!
And to turn it on again
:windo diffthis
put this in your .vimrc:
if &diff
syntax off
endif
what it does is disable syntax highlighting if you start in diff mode.
Syntax highlighting in vim
can be turned off/on with :syntax off
and :syntax on
.