From: Simon Ruderich Date: Sun, 30 Dec 2012 22:14:28 +0000 (+0100) Subject: after/syntax/diff.vim: Add highlights for GVim. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=0e8b792fbd7886b686e5d5d19903ee721eadddf6 after/syntax/diff.vim: Add highlights for GVim. --- diff --git a/vim/after/syntax/diff.vim b/vim/after/syntax/diff.vim index f2b7371..7815f08 100644 --- a/vim/after/syntax/diff.vim +++ b/vim/after/syntax/diff.vim @@ -28,8 +28,8 @@ syntax match diffRemoved /^--- .*$/ syntax match diffHunk /^@.*$/ contains=diffSubname " Special colors for filename and hunk. -highlight diffFile ctermfg=yellow cterm=bold -highlight diffHunk ctermfg=magenta cterm=bold +highlight diffFile ctermfg=yellow cterm=bold guifg=yellow gui=bold +highlight diffHunk ctermfg=magenta cterm=bold guifg=magenta gui=bold " Added lines in green, removed lines in red. -highlight diffAdded ctermfg=green cterm=bold -highlight diffRemoved ctermfg=red cterm=bold +highlight diffAdded ctermfg=green cterm=bold guifg=green gui=bold +highlight diffRemoved ctermfg=red cterm=bold guifg=red gui=bold