mirror of
https://github.com/sjl/badwolf.git
synced 2025-11-08 11:03:48 -05:00
Add g:badwolf_tabline setting.
Thanks to @jbernard on GitHub for the idea.
This commit is contained in:
@@ -40,6 +40,37 @@ Configuration
|
||||
|
||||
There are a few settings you can use to tweak how Bad Wolf looks.
|
||||
|
||||
### g:badwolf\_darkgutter
|
||||
|
||||
Determines whether the line number, sign column, and fold column are rendered
|
||||
darker than the normal background, or the same.
|
||||
|
||||
" Make the gutters darker than the background.
|
||||
let g:badwolf_darkgutter = 1
|
||||
|
||||
Default: `0` (off, gutters are the same as the background)
|
||||
|
||||
### g:badwolf\_tabline
|
||||
|
||||
Determines how light to render the background of the tab line (the line at the
|
||||
top of the screen containing the various tabs (only in console mode)).
|
||||
|
||||
Can be set to `0`, `1`, `2`, or `3`.
|
||||
|
||||
" Make the tab line darker than the background.
|
||||
let g:badwolf_tabline = 0
|
||||
|
||||
" Make the tab line the same color as the background.
|
||||
let g:badwolf_tabline = 1
|
||||
|
||||
" Make the tab line lighter than the background.
|
||||
let g:badwolf_tabline = 2
|
||||
|
||||
" Make the tab line much lighter than the background.
|
||||
let g:badwolf_tabline = 3
|
||||
|
||||
Default: `1` (same color as the background)
|
||||
|
||||
### g:badwolf\_html\_link\_underline
|
||||
|
||||
Determines whether text inside `a` tags in HTML files will be underlined.
|
||||
|
||||
Reference in New Issue
Block a user