nvim/lua/plugins/colorscheme.lua

28 lines
452 B
Lua
Raw Normal View History

2023-05-12 17:45:08 -07:00
return {
2023-05-12 18:15:01 -07:00
{
"rose-pine/neovim",
name = "rose-pine",
config = function()
require("rose-pine").setup({
2024-01-31 14:40:43 -08:00
-- groups = {
-- background = "none",
-- },
styles = {
transparency = true,
2023-05-12 18:15:01 -07:00
},
})
end,
},
2023-10-01 20:27:12 -07:00
{
"nyoom-engineering/oxocarbon.nvim",
},
2023-05-12 17:45:08 -07:00
-- Configure LazyVim to load rose-pine
{
"LazyVim/LazyVim",
opts = {
colorscheme = "rose-pine",
},
},
}