How do I remove the background highlighting from the linenumber column? #344
|
|
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,
},
} |
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
CursorLineNrhighlight group's background to empty.For example, when using lazy.nvim, you'd set this in
configfor the plugin: