add rosepine theme

This commit is contained in:
Mitchell Hingley
2026-07-21 11:03:36 -04:00
parent 068bcef098
commit ac131ba523
+41 -1
View File
@@ -106,10 +106,50 @@ local everforest = {
} }
--ROSE-PINE
local rosepine = {
"rose-pine/neovim",
priority = 1000,
lazy = true,
config = function()
local rosepine = require("rose-pine");
rosepine.setup({
variant = "moon", -- Options: "main", "moon", "dawn"
dark_variant = "moon",
bold_vert_split = false,
dim_nc_background = false,
disable_background = false,
disable_float_background = false,
disable_italics = false,
groups = {
background = "base",
panel = "surface",
border = "highlight_low",
comment = "muted",
link = "iris",
punctuation = "subtle",
todo = "rose",
warn = "gold",
error = "love",
info = "foam",
hint = "iris",
},
})
end,
-- vim.cmd("colorscheme rose-pine")
-- vim.cmd("colorscheme rose-pine-main")
-- vim.cmd("colorscheme rose-pine-moon")
-- vim.cmd("colorscheme rose-pine-dawn")
}
return { return {
material, material,
dracula, dracula,
kanagawa, kanagawa,
everforest everforest,
rosepine
} }