This commit is contained in:
2026-01-04 03:02:38 -05:00
commit 349645a9ca
13 changed files with 246 additions and 0 deletions

17
lua/plugins/rose-pine.lua Normal file
View File

@@ -0,0 +1,17 @@
-- lua/plugins/rose-pine.lua
return {
"rose-pine/neovim",
name = "rose-pine",
config = function()
require("rose-pine").setup({
highlight_groups = {
StatusLine = { fg = "love", bg = "love", blend = 10 },
StatusLineNC = { fg = "subtle", bg = "surface" },
},
})
vim.cmd("colorscheme rose-pine")
end
}