From 8bed0026e701432598538af4938184416c66c7f1 Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sun, 30 Dec 2018 00:18:29 +0100 Subject: [PATCH] same color for cursorColumn as cursorLine this fixes issue #23 --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 5e89687..51737d2 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -132,6 +132,7 @@ call hi('Normal', s:cdFront, s:cdBack, 'none', {}) call hi('ColorColumn', {}, s:cdCursorDarkDark, 'none', {}) call hi('Cursor', s:cdCursorDark, s:cdCursorLight, 'none', {}) call hi('CursorLine', {}, s:cdCursorDarkDark, 'none', {}) +call hi('CursorColumn', {}, s:cdCursorDarkDark, 'none', {}) call hi('Directory', s:cdBlue, s:cdBack, 'none', {}) call hi('DiffAdd', {}, s:cdDiffGreenDark, 'none', {}) call hi('DiffChange', {}, s:cdDiffRedDark, 'none', {})