Replies: 1 comment 8 replies
-
From the readme: {
highlight_groups = {
-- Comment = { fg = "foam" },
-- VertSplit = { fg = "muted", bg = "muted" },
},
before_highlight = function(group, highlight, palette)
-- Disable all undercurls
-- if highlight.undercurl then
-- highlight.undercurl = false
-- end
--
-- Change palette colour
-- if highlight.fg == palette.pine then
-- highlight.fg = palette.foam
-- end
end,
} If you want to modify a colour for dawn only: {
before_highlight = function(group, highlight, palette)
if vim.o.background == "light" and group == "GroupName" then
highlight.bg = palette.foam
end
end,
} |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Neovim version (nvim -v)
0.9.5
Terminal / multiplexer
kitty
Describe the bug
i want to override the default white selection background in dawn variant in my setup(). I tried to look it up but didn't figure this out, will be glad to see a link at least where i can read on that :), thx
Repro
No response
Beta Was this translation helpful? Give feedback.
All reactions