LunarVim/lua/lvim/lsp/providers/yamlls.lua
2023-04-06 21:55:09 -04:00

16 lines
314 B
Lua

local opts = {
settings = {
yaml = {
hover = true,
completion = true,
validate = true,
schemaStore = {
enable = true,
url = "https://www.schemastore.org/api/json/catalog.json",
},
schemas = require("schemastore").yaml.schemas(),
},
},
}
return opts