26 lines
797 B
Lua
26 lines
797 B
Lua
return {
|
|
"rose-pine/neovim",
|
|
name = "rose-pine",
|
|
branch = "main",
|
|
lazy = false,
|
|
enabled = true,
|
|
priority = 1000,
|
|
opts = {},
|
|
config = function()
|
|
local rose = require("rose-pine")
|
|
rose.setup({
|
|
variant = "auto", -- auto, main, moon, or dawn
|
|
dark_variant = "moon", -- main, moon, or dawn
|
|
extend_background_behind_borders = true,
|
|
-- disable_background = true,
|
|
enable = {
|
|
terminal = true,
|
|
legacy_highlights = true, -- Improve compatibility for previous versions of Neovim
|
|
migrations = true, -- Handle deprecated options automatically
|
|
},
|
|
styles = {
|
|
transparency = false,
|
|
},
|
|
})
|
|
end,
|
|
}
|