-
The 🌈 Colorschemes README section says:
Can you help me understand how to make this work? I have 2 themes
return {
{
"overcache/NeoSolarized",
lazy = false,
config = function()
vim.opt.background = "light"
vim.cmd.colorscheme("NeoSolarized")
end,
},
{
"tomasiser/vim-code-dark",
lazy = true,
config = function()
vim.opt.background = "dark"
vim.cmd.colorscheme("codedark")
end,
},
} The README seems to suggest I should be able to switch to the Currently I need to What am I missing here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I can load that colorscheme fine with that config. You should not ad |
Beta Was this translation helpful? Give feedback.
I can load that colorscheme fine with that config.
You should not ad
vim.cmd.colorscheme("codedark")
to that config method though, since this way you would be loading it twice.