18 lines
319 B
Lua
18 lines
319 B
Lua
-- Configure rose-pine and gruvbox-material colorschemes.
|
|
return {
|
|
{ "rose-pine/neovim" },
|
|
{
|
|
"sainnhe/gruvbox-material",
|
|
opts = function()
|
|
vim.g.gruvbox_material_foreground = "original"
|
|
end,
|
|
},
|
|
{
|
|
-- Set default colorscheme.
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "gruvbox-material",
|
|
},
|
|
},
|
|
}
|