dotfiles/modules/colorscheme/gruvbox/neovim.lua

14 lines
238 B
Lua
Raw Normal View History

2022-07-26 03:15:26 +00:00
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