diff options
Diffstat (limited to 'lua/nvim-lsp-installer/servers/jsonls.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/jsonls.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim-lsp-installer/servers/jsonls.lua b/lua/nvim-lsp-installer/servers/jsonls.lua index e856f50f..f826f6bd 100644 --- a/lua/nvim-lsp-installer/servers/jsonls.lua +++ b/lua/nvim-lsp-installer/servers/jsonls.lua @@ -5,8 +5,8 @@ local root_dir = server.get_server_root_path('json') return server.Server:new { name = "jsonls", root_dir = root_dir, - install_cmd = [[npm install vscode-json-languageserver-bin]], + install_cmd = [[npm i vscode-json-languageserver]], default_options = { - cmd = { root_dir .. '/node_modules/.bin/json-languageserver', '--stdio' }, + cmd = { root_dir .. '/node_modules/.bin/vscode-json-languageserver', '--stdio' }, }, } |
