mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
14 lines
238 B
Lua
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
|