cpea2506 / one_monokai.nvim

One Monokai for Neovim
MIT License
159 stars 9 forks source link

bug: not found highlights group TablineFill TablineSel #47

Closed dobbbri closed 1 year ago

dobbbri commented 1 year ago

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

1. 2. 3.

Expected Behavior

remove white bar at end of tablinr

Additional context

No response

cpea2506 commented 1 year ago

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
})