LunarVim/lua/lvim/lsp/providers/yamlls.lua

17 lines
314 B
Lua
Raw Normal View History

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