summaryrefslogtreecommitdiffstats
path: root/lua/user/lsp
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2022-03-31 15:13:07 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2022-04-07 15:30:28 +0200
commit93d6a71043f097f1455aaf390d0b26d5a7565e1d (patch)
tree0ad921e471684ab93570582439a19b96318bd9f1 /lua/user/lsp
parentd2fbac600b93725f077c179cf8651651c8f58bb0 (diff)
downloadvim-93d6a71043f097f1455aaf390d0b26d5a7565e1d.zip
vim-93d6a71043f097f1455aaf390d0b26d5a7565e1d.tar.gz
disable jsonls and sumneko setup
Diffstat (limited to 'lua/user/lsp')
-rw-r--r--lua/user/lsp/lsp-installer.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/lua/user/lsp/lsp-installer.lua b/lua/user/lsp/lsp-installer.lua
index d1bda00..6427378 100644
--- a/lua/user/lsp/lsp-installer.lua
+++ b/lua/user/lsp/lsp-installer.lua
@@ -13,15 +13,15 @@ lsp_installer.on_server_ready(function(server)
capabilities = require("user.lsp.handlers").capabilities,
}
- if server.name == "jsonls" then
- local jsonls_opts = require("user.lsp.settings.jsonls")
- opts = vim.tbl_deep_extend("force", jsonls_opts, opts)
- end
+ -- if server.name == "jsonls" then
+ -- local jsonls_opts = require("user.lsp.settings.jsonls")
+ -- opts = vim.tbl_deep_extend("force", jsonls_opts, opts)
+ -- end
- if server.name == "sumneko_lua" then
- local sumneko_opts = require("user.lsp.settings.sumneko_lua")
- opts = vim.tbl_deep_extend("force", sumneko_opts, opts)
- end
+ -- if server.name == "sumneko_lua" then
+ -- local sumneko_opts = require("user.lsp.settings.sumneko_lua")
+ -- opts = vim.tbl_deep_extend("force", sumneko_opts, opts)
+ -- end
-- This setup() function is exactly the same as lspconfig's setup function.
-- Refer to https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md