Tsuzat / NeoSolarized.nvim

NeoSolarized colorscheme for NeoVim with full transparency
Apache License 2.0
174 stars 16 forks source link

Modify WinSeparator color #16

Closed 9enki closed 10 months ago

9enki commented 10 months ago

I would like to make the WinSeparator color a little lighter than c.bg0 . Is there any other way than rewriting this value directly in my local?

https://github.com/Tsuzat/NeoSolarized.nvim/blob/c28b7f9bdc48a9017480da41529ef63ab6ccb885/lua/NeoSolarized/theme.lua#L79

9enki commented 10 months ago

Sorry for creating a new issue even though it was discussed in a past issue.

https://github.com/Tsuzat/NeoSolarized.nvim/issues/5

I was able to achieve what I wanted to do with the following settings. Thank you.

require("NeoSolarized").setup({
  on_highlights = function(highlights, colors)
    highlights.WinSeparator.fg = "#abcdef"
  end,
})
vim.cmd([[colorscheme NeoSolarized]])
Tsuzat commented 10 months ago

Not a problem. Happy Coding ❤️