oldworld.nvim
oldworld.nvim copied to clipboard
Transparent background
It would be nice to add the possibility of making the background transparent
Maybe vim.cmd(‘hi Normal guibg=NONE ctermbg=NONE’) but implemented correctly.
Something like this would be better than vim.cmd
-- lua/config/oldworld.lua
require('oldworld').setup({
integrations = {
navic = true,
alpha = false,
rainbow_delimiters = false,
},
highlight_overrides = {
Normal = { bg = 'NONE' },
NormalNC = { bg = 'NONE' },
CursorLine = { bg = '#222128' },
},
})
vim.cmd.colorscheme 'oldworld'