dotfiles/lua/plugins/gruvbox.lua
Joshua Finch 487f874984 Massive rewrite and modularization of the existing neovim config to
break it up into multiple files and to use a maintained package manager
(lazy.nvim)
2024-02-29 21:22:09 -06:00

12 lines
233 B
Lua

return {
'ellisonleao/gruvbox.nvim',
config = function()
require('gruvbox').setup({
contrast = 'hard',
})
vim.cmd([[colorscheme gruvbox]])
end,
lazy = false,
priority = 1000,
}