nvim-config11/lua/lsp/yamlls.lua

20 lines
572 B
Lua
Raw Normal View History

2025-03-31 01:20:52 +01:00
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
}
}
},
}