aboutsummaryrefslogtreecommitdiff
path: root/lsp/jsonls.lua
blob: 321dda6e4e335bde72249b3b0988ceca34e93421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@diagnostic disable: missing-fields, inject-field

---@type vim.lsp.ClientConfig
return {
  settings = {
    json = {
      validate = { enable = true },
    },
  },
  before_init = function (_, config)
    config.settings.json.schemas = require("schemastore").json.schemas()
  end,
}