Replies: 2 comments
-
Great question! Yes, an vim.api.nvim_create_autocmd('ColorScheme', {
callback = function()
vim.cmd.highlight 'Normal guibg=#07111e'
-- other groups
end,
group = vim.api.nvim_create_augroup('config', {}),
pattern = 'highlite*',
}) Unlike |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you, will try. I asked, because usually themes allows to change theme's palette and colour groups. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to override, for example, only
bg
in built-in colorschemes without auto command?Beta Was this translation helpful? Give feedback.
All reactions