dotfiles/config/nvim/lua/lsp/providers/yamlls.lua
2021-11-28 22:27:34 +02:00

14 lines
260 B
Lua

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