devcontainer/config/nvim/plugins/colorscheme.lua

16 lines
231 B
Lua
Raw Normal View History

2024-09-23 19:56:52 +02:00
return {
2024-11-07 19:21:27 +01:00
{ "rose-pine/neovim" },
{
"sainnhe/gruvbox-material",
opts = function()
vim.g.gruvbox_material_foreground = "original"
end,
},
2024-10-26 15:45:02 +02:00
{
"LazyVim/LazyVim",
opts = {
2024-11-07 19:21:27 +01:00
colorscheme = "gruvbox-material",
2024-10-26 15:45:02 +02:00
},
},
2024-09-23 19:56:52 +02:00
}