nvim/lua/plugins/colorscheme.lua

25 lines
382 B
Lua

return {
{
"rose-pine/neovim",
name = "rose-pine",
config = function()
require("rose-pine").setup({
groups = {
background = "none",
},
})
end,
},
{
"nyoom-engineering/oxocarbon.nvim",
},
-- Configure LazyVim to load rose-pine
{
"LazyVim/LazyVim",
opts = {
colorscheme = "rose-pine",
},
},
}