diff options
Diffstat (limited to 'colors/twilight256.vim')
-rw-r--r-- | colors/twilight256.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/colors/twilight256.vim b/colors/twilight256.vim index cf8082d..83d01f9 100644 --- a/colors/twilight256.vim +++ b/colors/twilight256.vim @@ -24,6 +24,11 @@ " currently active window and the other windows have darker statuslines. " Makes it easier to see visually where my cursor is. " +" 2014.05.25: +" * Set "CursorLine" to be a bit lighter than the background. Previously +" there was no highlighting definition for this and it defaulted to an +" underline. +" set background=dark if version > 580 @@ -287,6 +292,9 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 " active window and darker colour for others. call <SID>X("StatusLineNC", "c2bfa5", "000000", "reverse") + " Added 2014.05.25: set colour for cursorline + hi CursorLine cterm=none ctermbg=237 + " syntax highlighting groups call <SID>X("Comment", "828282", "", "") call <SID>X("NonText", "828282", "", "") |