From ebd68bd717dabb7abf6a8ed0fd36d04b3f87c6ca Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 29 Apr 2020 20:23:21 +0200 Subject: colors/twilight256: Remove underline on current line number After upgrading to Vim 8.2, an underline was added to the line number of the current line. Remove this with `CursorLineNr` to restore the look from before the upgrade. --- colors/twilight256.vim | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'colors') diff --git a/colors/twilight256.vim b/colors/twilight256.vim index 83d01f9..30cab97 100644 --- a/colors/twilight256.vim +++ b/colors/twilight256.vim @@ -29,6 +29,10 @@ " there was no highlighting definition for this and it defaulted to an " underline. " +" 2020.04.29: +" * Set "CursorLineNr" to remove the underline. This appeared after +" upgrading to Vim 8.2. +" set background=dark if version > 580 @@ -295,6 +299,9 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 " Added 2014.05.25: set colour for cursorline hi CursorLine cterm=none ctermbg=237 + " Added 2020.04.29: remove underline on the line number of the current line + hi CursorLineNr cterm=none + " syntax highlighting groups call X("Comment", "828282", "", "") call X("NonText", "828282", "", "") -- cgit v1.2.3