summaryrefslogtreecommitdiff
path: root/lua/lvim/lsp/providers/yamlls.lua
blob: c9764fc52c4b5ff6d8662d38efc0977fdf03e1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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