aboutsummaryrefslogtreecommitdiffstats
path: root/colors/twilight256.vim
diff options
context:
space:
mode:
authorTeddy Wing2014-05-25 17:43:17 -0400
committerTeddy Wing2014-05-25 17:43:17 -0400
commitb8c6427bc0744a0d0ada6d37f955716210112f04 (patch)
tree313d2295a92b2b164b7202634a79a9b2f3b45550 /colors/twilight256.vim
parentbc67381ba76074b4601e0ac2159527f91a01e29b (diff)
downloaddotvim-b8c6427bc0744a0d0ada6d37f955716210112f04.tar.bz2
twilight256: add colour for CursorLine
Highlight background colour of the current line. Set it to a couple stops lighter than the background colour.
Diffstat (limited to 'colors/twilight256.vim')
-rw-r--r--colors/twilight256.vim8
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", "", "")