mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
12 lines
249 B
Lua
12 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,
|
|
}
|