diff options
| author | Benjamin Linskey | 2018-04-10 21:43:49 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2018-04-10 21:43:49 -0400 |
| commit | 019d30f845990aae0355dfacda95fe3db4b8d3b2 (patch) | |
| tree | 6e30914e70169590513333d6471a8e2ae62bd535 | |
| parent | 3252676b9a2fd8671f6399c156adf7c067c8c944 (diff) | |
| download | btl.vim-019d30f845990aae0355dfacda95fe3db4b8d3b2.tar.gz | |
Improve tabline number appearance
Tabline numbers now match the corresponding tab title segments.
| -rw-r--r-- | colors/btl.vim | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/colors/btl.vim b/colors/btl.vim index e426639..9fcf99b 100644 --- a/colors/btl.vim +++ b/colors/btl.vim @@ -7,7 +7,7 @@ " - Cursor improvements? " - Make line numbers more subtle " - General cleanup, organization, and general improvements to robustness -" - Add unset groups, esp. ALE, diff, quickfix window +" - Add unset groups, esp. diff, quickfix window " - Consider adding some toggleable, subtle, grayscale syntax highlighting. let g:colors_name="btl" @@ -56,9 +56,8 @@ hi! StatusLine ctermbg=251 ctermfg=236 cterm=none hi! link StatusLineNC VertSplit hi! link TabLine VertSplit hi! link TabLineFill VertSplit -hi! link TabLineFill VertSplit -hi! TabLineSel ctermbg=232 ctermfg=246 cterm=bold -hi! link Title TabLineSel +hi! TabLineSel ctermbg=246 ctermfg=232 cterm=reverse,bold +hi! link Title VertSplit hi! Folded ctermbg=234 ctermfg=244 cterm=italic hi! IncSearch ctermbg=234 ctermfg=251 cterm=underline,bold,italic hi! Search ctermbg=234 ctermfg=251 cterm=underline,bold,italic |