devcontainer/config/nvim/plugins/colorscheme.lua

10 lines
222 B
Lua
Raw Normal View History

2024-12-12 20:42:39 +01:00
-- Configure rose-pine and gruvbox-material colorschemes.
2024-09-23 19:56:52 +02:00
return {
2024-12-20 20:24:46 +01:00
{ "rose-pine/neovim", name = "rose-pine" },
2024-12-13 19:33:52 +01:00
{ "sainnhe/gruvbox-material" },
2024-12-12 21:10:35 +01:00
{
2024-10-26 15:45:02 +02:00
"LazyVim/LazyVim",
2024-12-13 19:33:52 +01:00
opts = { colorscheme = "gruvbox-material" },
2024-10-26 15:45:02 +02:00
},
2024-09-23 19:56:52 +02:00
}