LunarVim/lua/lsp/json-ls.lua

17 lines
456 B
Lua
Raw Normal View History

-- npm install -g vscode-json-languageserver
require'lspconfig'.jsonls.setup {
2021-03-26 00:58:40 +01:00
cmd = {
"node", DATA_PATH .. "/lspinstall/json/vscode-json/json-language-features/server/dist/node/jsonServerMain.js",
"--stdio"
},
on_attach = require'lsp'.common_on_attach,
2021-03-26 00:58:40 +01:00
commands = {
2021-03-26 00:58:40 +01:00
Format = {
function()
vim.lsp.buf.range_formatting({}, {0, 0}, {vim.fn.line("$"), 0})
end
}
}
}