nvim-zh / colorful-winsep.nvim

Make your nvim window separators colorful
MIT License
422 stars 16 forks source link

Trying to change background color but it doesnt seem to work. #29

Closed thepenguinthatwants closed 1 year ago

thepenguinthatwants commented 1 year ago

Hiya, Your plugin is amazing as it makes it lot quicker to check which terminal is focused. The problem is that the color is not that nice. I am using lazy as nvim package manager.

I've tried to change background color but it doesn't seem to do anything with this.


return {
  "nvim-zh/colorful-winsep.nvim",
  config = true,
        highlight = {
                bg = '#4974a5',
                fg = '#4974a5'
        },

}
```'¨
Can you help?
denstiny commented 1 year ago

It seems that this is not the right lazy.nvim use way 图片


    {
        "nvim-zh/colorful-winsep.nvim",
        config = function()
            asynrequire("packers.nvimsep")
        end,
        event = { "WinNew" },
    }
```lua
thepenguinthatwants commented 1 year ago

ah u r right thanks!

denstiny commented 1 year ago

ah u r right thanks!

you are welcome