summaryrefslogtreecommitdiff
path: root/.config/nvim/ftplugin/json.lua
blob: 29a3096fd4e71b2f2909a3ebf94b7720e5c83473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- npm install -g vscode-json-languageserver
require("lspconfig").jsonls.setup {
  cmd = {
    "node",
    DATA_PATH .. "/lspinstall/json/vscode-json/json-language-features/server/dist/node/jsonServerMain.js",
    "--stdio",
  },
  on_attach = require("lsp").common_on_attach,

  commands = {
    Format = {
      function()
        vim.lsp.buf.range_formatting({}, { 0, 0 }, { vim.fn.line "$", 0 })
      end,
    },
  },
}