shaunsingh / solarized.nvim

Port of the Solarized colorscheme for vim, written in lua, with treesitter support.
GNU General Public License v2.0
178 stars 37 forks source link

Cursorline and CursorColumn #8

Closed fdelacruz closed 2 years ago

fdelacruz commented 2 years ago

Hi, I love this port of my beloved vim theme. The only things I'm missing are the Cursorline and CursorColumn. Are these possible??

Thanks!

fdelacruz commented 2 years ago

I see the variables in lua/solarized/theme.lua: CursorColumn = { fg = solarized.none, bg = solarized.active }, CursorLine = { fg = solarized.none, bg = solarized.none },

fdelacruz commented 2 years ago

These did the trick for Cursorline LineNr = { fg = solarized.line_numbers, bg = solarized.bg_alt }, . . CursorLine = { fg = solarized.none, bg = solarized.bg_alt },

fdelacruz commented 2 years ago

For a Solarized theme these should've been set by default.