dotfiles/modules/colorscheme/gruvbox/neovim.lua
2022-07-25 23:20:02 -04:00

14 lines
238 B
Lua

local M = {}
M.packer = function(use)
use({
"lifepillar/vim-gruvbox8",
config = function()
vim.g.gruvbox_italicize_strings = 0
vim.cmd("colorscheme gruvbox8")
end,
})
end
return M