Set initial configuration

This commit is contained in:
Eduardo Ellery 2024-12-15 15:17:14 +01:00
parent de44f49101
commit 44d3a98cb3
8 changed files with 1786 additions and 718 deletions

9
lua/plugins/gruvbox.lua Normal file
View file

@ -0,0 +1,9 @@
return {
"ellisonleao/gruvbox.nvim",
priority = 1000 ,
config = function()
-- Gruvbox shenanigans
vim.o.background = "dark" -- or "light" for light mode
vim.cmd.colorscheme "gruvbox"
end
}