From 3b366961553cab2d687884ab6eac63243227c004 Mon Sep 17 00:00:00 2001 From: Xinqi Bao Date: Tue, 28 Jul 2020 17:06:06 -0400 Subject: [PATCH] color: modified background color for SyntasticError and SyntasticWarning --- colors/gruvbox.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 66246fba..aaefe215 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -770,8 +770,8 @@ hi! link SignifySignDelete GruvboxRedSign " }}} " Syntastic: {{{ -call s:HL('SyntasticError', s:none, s:none, s:undercurl, s:red) -call s:HL('SyntasticWarning', s:none, s:none, s:undercurl, s:yellow) +call s:HL('SyntasticError', s:vim_fg, s:red, s:undercurl, s:red) +call s:HL('SyntasticWarning', s:vim_fg, s:orange, s:undercurl, s:yellow) hi! link SyntasticErrorSign GruvboxRedSign hi! link SyntasticWarningSign GruvboxYellowSign