devcontainer/config/nvim/plugins/colorscheme.lua

18 lines
319 B
Lua
Raw Normal View History

2024-12-12 19:42:39 +00:00
-- Configure rose-pine and gruvbox-material colorschemes.
2024-09-23 17:56:52 +00:00
return {
2024-11-07 18:21:27 +00:00
{ "rose-pine/neovim" },
2024-12-12 20:10:35 +00:00
{
"sainnhe/gruvbox-material",
opts = function()
vim.g.gruvbox_material_foreground = "original"
end,
},
2024-11-07 18:21:27 +00:00
{
2024-12-12 19:42:39 +00:00
-- Set default colorscheme.
2024-10-26 13:45:02 +00:00
"LazyVim/LazyVim",
opts = {
2024-11-07 18:21:27 +00:00
colorscheme = "gruvbox-material",
2024-10-26 13:45:02 +00:00
},
},
2024-09-23 17:56:52 +00:00
}