nvim-base16.lua
nvim-base16.lua copied to clipboard
override single color
How can I override the background color please?
I just figured out how to do this yesterday in order to override the a few of the highlight groups related to diff mode.
vim.cmd.colorscheme('base16-tomorrow-night')
local colors = require('colorscheme').colors
vim.api.nvim_set_hl(0, 'DiffAdd', {
fg = colors.base01, bg = colors.base0B
})
Of course, you'll have to figure out how to target the background itself.