From dcd5a5080865676e741eb89e6f90dd0086b8a881 Mon Sep 17 00:00:00 2001 From: Jack Bracewell Date: Thu, 9 Oct 2014 14:15:10 +0100 Subject: [PATCH] Make CursorColumn the same as CursorLine - These two highlight groups are the same by default, should keep them that way. - The motivation behind this is to make the scheme more compatible with the vim-paren-crosshairs plugin --- colors/gotham.vim | 1 + colors/gotham256.vim | 1 + 2 files changed, 2 insertions(+) diff --git a/colors/gotham.vim b/colors/gotham.vim index f512f99..0b62243 100644 --- a/colors/gotham.vim +++ b/colors/gotham.vim @@ -99,6 +99,7 @@ call s:Col('Normal', 'base6', s:background) " Line, cursor and so on. call s:Col('Cursor', 'base1', 'base6') call s:Col('CursorLine', '', 'base1') +call s:Col('CursorColumn', '', 'base1') " Sign column, line numbers. call s:Col('LineNr', 'base4', s:linenr_background) diff --git a/colors/gotham256.vim b/colors/gotham256.vim index edc144b..0419d7a 100644 --- a/colors/gotham256.vim +++ b/colors/gotham256.vim @@ -99,6 +99,7 @@ call s:Col('Normal', 'base6', s:background) " Line, cursor and so on. call s:Col('Cursor', 'base1', 'base6') call s:Col('CursorLine', '', 'base1') +call s:Col('CursorColumn', '', 'base1') " Sign column, line numbers. call s:Col('LineNr', 'base4', s:linenr_background)