devcontainer/config/nvim/plugins/colorscheme.lua
Job79 a1332e1f69
All checks were successful
Container build / container-build (push) Successful in 5m3s
chore: update to lazyvim 13
2024-11-08 18:52:27 +01:00

16 lines
231 B
Lua

return {
{ "rose-pine/neovim" },
{
"sainnhe/gruvbox-material",
opts = function()
vim.g.gruvbox_material_foreground = "original"
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox-material",
},
},
}