diff options
author | Teddy Wing | 2020-04-29 20:23:21 +0200 |
---|---|---|
committer | Teddy Wing | 2020-04-29 20:23:21 +0200 |
commit | ebd68bd717dabb7abf6a8ed0fd36d04b3f87c6ca (patch) | |
tree | 5dca54493b2143868abf7e7794c8ee87fad0c242 | |
parent | 4accfc5e4f83da44fd2a6ffbcfcb57c67cc45c40 (diff) | |
download | dotvim-ebd68bd717dabb7abf6a8ed0fd36d04b3f87c6ca.tar.bz2 |
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.
-rw-r--r-- | colors/twilight256.vim | 7 |
1 files changed, 7 insertions, 0 deletions
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 <SID>X("Comment", "828282", "", "") call <SID>X("NonText", "828282", "", "") |