cpea2506/one_monokai.nvim

bug: not found highlights group TablineFill TablineSel

Closed this issue · 1 comments

Describe the bug

Do you need add highlights groups:
TablineFill
TablineSel

Screenshots

No response

Operating System + version

mac os 10

Neovim version

nvim 8

Reproduce steps

Expected Behavior

remove white bar at end of tablinr

Additional context

No response

I'm currently not using TabLine so unsure what you are expecting but if you want your own behavior, you can custom your TabLine* highlights (restarting nvim required) with

require("one_monokai").setup({
	themes = function(colors)
		return {
			TabLineFill = {}
			TabLineSel = {}
		}
	end
})