mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 21:20:13 +00:00
15 lines
281 B
Lua
15 lines
281 B
Lua
local M = {}
|
|
|
|
M.packer = function(use)
|
|
use({
|
|
"lifepillar/vim-gruvbox8",
|
|
config = function()
|
|
vim.g.gruvbox_italicize_strings = 0
|
|
vim.cmd("colorscheme gruvbox8")
|
|
vim.cmd("set background=dark")
|
|
end,
|
|
})
|
|
end
|
|
|
|
return M
|