12 lines
331 B
Lua
12 lines
331 B
Lua
return {
|
|
"rose-pine/neovim",
|
|
name = "rose-pine",
|
|
priority = 1000,
|
|
init = function()
|
|
-- Load the colorscheme here.
|
|
-- Like many other themes, this one has different styles, and you could load
|
|
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
|
vim.cmd.colorscheme("rose-pine-main")
|
|
end,
|
|
}
|