nvim/lua/plugins/colorscheme.lua

29 lines
476 B
Lua
Raw Normal View History

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