nvim-dot-file/lua/plugins/colorscheme.lua
2026-05-01 23:30:22 +02:00

11 lines
352 B
Lua

return {
{
'ellisonleao/gruvbox.nvim',
lazy = false,
priority = 1000,
config = function()
vim.cmd([[colorscheme gruvbox]])
end,
opts = { style = 'dark' }
},
} -- Main theme should be load during startup.