mirror of https://github.com/LazyVim/starter
13 lines
249 B
Lua
13 lines
249 B
Lua
|
---@diagnostic disable: missing-fields
|
||
|
return {
|
||
|
"neanias/everforest-nvim",
|
||
|
config = function()
|
||
|
require("everforest").setup({
|
||
|
background = "medium",
|
||
|
italics = true,
|
||
|
ui_contrast = "high",
|
||
|
diagnostic_text_highlight = true,
|
||
|
})
|
||
|
end,
|
||
|
}
|