How do I remove the background highlighting from the linenumber column? #344
-
|
Beta Was this translation helpful? Give feedback.
Answered by
natemccurdy
Jul 17, 2024
Replies: 1 comment
-
Set the For example, when using lazy.nvim, you'd set this in return {
{
"ellisonleao/gruvbox.nvim",
config = function()
require("gruvbox").setup({
overrides = {
CursorLineNr = { bg = "" },
},
})
end,
},
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rew1nter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Set the
CursorLineNr
highlight group's background to empty.For example, when using lazy.nvim, you'd set this in
config
for the plugin: