mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 12:25:39 +00:00
17 lines
456 B
Lua
17 lines
456 B
Lua
-- 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
|
|
}
|
|
}
|
|
}
|