pojokcodeid.nvim-lazy/lua/user/lsp/settings_backup/yamlls.lua
2024-10-20 17:21:07 +07:00

16 lines
282 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