Tsuzat / NeoSolarized.nvim

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

Coloring of quickfix list #9

Closed mohelm closed 1 year ago

mohelm commented 1 year ago

Hi Tsuzat, thanks again for the amazing theme!

I have a bit of an issue that the quickfix list is not that readable:

Bildschirm­foto 2023-02-15 um 06 05 47

Is there a chance you could look into this, or is this an issue on my side?

Thanks!

Tsuzat commented 1 year ago

Hey @mohelm , You can change the highlight group for QuickFixLine from the configuration of NeoSolarized. Please check out the documentation. You can add the following lines to your setup,

-- Add specific hightlight groups
on_highlights = function(highlights, colors) 
  highlights.QuickFixLine.bg = colors.none -- Removing background from QuickFixLine
end, 

You can find the QuickFixLine highlight group here in the code. Let me know if this solves the issue.

Feel free to play with hightlight groups and submit a PR if required. Happy Coding ❤️

mohelm commented 1 year ago

thanks a bunch. set it to none for now. might play around with the highlights group later. thx.