nvim: Update theme to gruvbox

The default theme is hard to tell colors apart and the default color
schemes aren't great in general

Signed-off-by: Nicholas Mello <nick@nmello.dev>
This commit is contained in:
2025-09-12 20:57:59 -05:00
parent 3e83ea9580
commit e9e04935bb
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
return {
"ellisonleao/gruvbox.nvim",
config = function()
vim.g.gruvbox_contrast_dark = "hard"
vim.g.gruvbox_italic = 1
vim.g.gruvbox_bold = 1
vim.cmd("colorscheme gruvbox")
end,
}