diff options
author | Teddy Wing | 2014-05-23 20:36:33 -0400 |
---|---|---|
committer | Teddy Wing | 2014-05-23 20:36:33 -0400 |
commit | fc4200274cbc0dd8b478c7ff567252aed9bf0106 (patch) | |
tree | 0b11a27441f654def6de8d7a21c83cf903264aad /colors | |
parent | 472c9d93701f9993e6451c3c29d26266581fb275 (diff) | |
download | dotvim-fc4200274cbc0dd8b478c7ff567252aed9bf0106.tar.bz2 |
twilight256: colour inactive statuslines dark grey
Use a dark grey colour on statuslines of inactive windows to make it
easier to differentiate between active and inactive windows. The active
window remains the old light grey.
Diffstat (limited to 'colors')
-rw-r--r-- | colors/twilight256.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/colors/twilight256.vim b/colors/twilight256.vim index 63f3aaa..cf8082d 100644 --- a/colors/twilight256.vim +++ b/colors/twilight256.vim @@ -19,6 +19,11 @@ " * Manually set "Normal" ctermbg to 235 (or #262626) " * Set "NonText" and "SpecialKey" to "Comment" colour " +" 2014.05.23: +" * Set "StatusLineNC" to a dark grey. This way I get a light grey on the +" currently active window and the other windows have darker statuslines. +" Makes it easier to see visually where my cursor is. +" set background=dark if version > 580 @@ -277,6 +282,10 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256 "Menu "Scrollbar "Tooltip + + " Added 2014.05.23: set custom statusline colour. Lighter colour for the + " active window and darker colour for others. + call <SID>X("StatusLineNC", "c2bfa5", "000000", "reverse") " syntax highlighting groups call <SID>X("Comment", "828282", "", "") |