From d1aaa7ebcc5a5411be281701a942f72a370f7ff7 Mon Sep 17 00:00:00 2001 From: teddy Date: Tue, 8 Feb 2022 23:20:12 +0100 Subject: [PATCH] fix : foreground of DiffText --- colors/codedark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index 2975709..8a198de 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -145,7 +145,7 @@ call hi('Directory', s:cdBlue, s:cdBack, 'none', {}) call hi('DiffAdd', {}, s:cdDiffGreenLight, 'none', {}) call hi('DiffChange', {}, s:cdDiffBlue, 'none', {}) call hi('DiffDelete', {}, s:cdDiffRedLight, 'none', {}) -call hi('DiffText', s:cdBack, s:cdDiffBlueLight, 'none', {}) +call hi('DiffText', {}, s:cdDiffBlueLight, 'none', {}) call hi('EndOfBuffer', s:cdLineNumber, s:cdBack, 'none', {}) call hi('ErrorMsg', s:cdRed, s:cdBack, 'none', {}) call hi('VertSplit', s:cdSplitDark, s:cdBack, 'none', {})