This commit is contained in:
fz0x1 2024-09-29 20:33:29 +02:00
parent dff4d40b46
commit 341f231742
2 changed files with 10 additions and 3 deletions

View file

@ -1,8 +1,14 @@
local config = function()
require("gruvbox").setup({
transparent_mode = true,
})
end
return {
"ellisonleao/gruvbox.nvim",
lazy = false,
priority = 1000,
opts = {},
opts = config,
config = function()
vim.cmd("colorscheme gruvbox")
end,