18 lines
333 B
Lua
18 lines
333 B
Lua
return {
|
|
"ellisonleao/gruvbox.nvim",
|
|
priority = 1000,
|
|
config = function()
|
|
vim.cmd([[colorscheme gruvbox]])
|
|
end,
|
|
opts = {
|
|
italic = {
|
|
strings = false,
|
|
emphasis = true,
|
|
comments = true,
|
|
operators = false,
|
|
folds = true,
|
|
},
|
|
},
|
|
}
|
|
|