diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 14:27:30 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 14:27:30 +0200 |
commit | 740e27ec856cc688f0ecf0ffe2b55b26ce771407 (patch) | |
tree | 832cd7227c0ab839baf8f004958fdddeb975422e /.config/nvim/ftplugin/json.lua | |
parent | 409dfed3237f9f0a6e96879078d1daf3d9c02e03 (diff) |
Add language support for linting and diagnostics
Diffstat (limited to '.config/nvim/ftplugin/json.lua')
-rw-r--r-- | .config/nvim/ftplugin/json.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/nvim/ftplugin/json.lua b/.config/nvim/ftplugin/json.lua new file mode 100644 index 0000000..29a3096 --- /dev/null +++ b/.config/nvim/ftplugin/json.lua @@ -0,0 +1,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, + }, + }, +} |