yamlls.lua 314 B

12345678910111213141516
  1. local opts = {
  2. settings = {
  3. yaml = {
  4. hover = true,
  5. completion = true,
  6. validate = true,
  7. schemaStore = {
  8. enable = true,
  9. url = "https://www.schemastore.org/api/json/catalog.json",
  10. },
  11. schemas = require("schemastore").yaml.schemas(),
  12. },
  13. },
  14. }
  15. return opts