neovim: fix bufferline TablineFill color

It was called twice.
This commit is contained in:
Hoang Nguyen 2021-07-14 03:08:10 +03:00
parent a0ca5c25b6
commit faaf42a125
No known key found for this signature in database
GPG Key ID: 813CF484F4993419
2 changed files with 2 additions and 11 deletions

View File

@ -263,8 +263,8 @@ local function highlight_plugins()
hi('GitSignsDeleteNr', c.red , '', '', '')
-- BufferLine
hi('BufferLineIndicatorSelected', c.black, '', '', '')
hi('BufferLineFill', c.black, '', '', '')
hi('BufferLineIndicatorSelected', c.cyan, '', '', '')
hi('BufferLineFill', c.grey1, c.grey1, '', '')
-- Dashboard
hi('DashboardHeader' , c.cyan , '', 'bold' , '')

View File

@ -17,14 +17,5 @@ return require('bufferline').setup {
{filetype = 'packer', text = 'Packer', text_align = 'left'}
},
separator_style = 'thin'
},
highlights = {
fill = {
guibg = {
attribute = 'bg',
highlight = 'TabLineFill'
}
}
}
}