pojokcodeid.nvim-lazy/lua/user/lsp/settings_backup/yamlls.lua

17 lines
282 B
Lua
Raw Normal View History

2024-04-18 07:17:54 +07:00
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