nvim-config11/lua/lsp/yamlls.lua
2025-03-31 11:19:48 +01:00

19 lines
572 B
Lua

return {
settings = {
yaml = {
schemaStore = {
-- You must disable built-in schemaStore support if you want to use
-- this plugin and its advanced options like `ignore`.
enable = false,
-- Avoid TypeError: Cannot read properties of undefined (reading 'length')
url = "",
},
schemas = require('schemastore').yaml.schemas(),
},
redhat = {
telemetry = {
enabled = false
}
}
},
}