json-ls.lua 277 B

1234567891011
  1. -- npm install -g vscode-json-languageserver
  2. require'lspconfig'.jsonls.setup {
  3. on_attach = require'lsp'.common_on_attach,
  4. commands = {
  5. Format = {
  6. function()
  7. vim.lsp.buf.range_formatting({},{0,0},{vim.fn.line("$"),0})
  8. end
  9. }
  10. }
  11. }