summaryrefslogtreecommitdiff
path: root/lua/plugins
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-10 22:26:13 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-10 22:26:13 +0100
commit6c14bdd8b2253d821d2a8e4b4f54584cdc4f4388 (patch)
tree6fdafa726254cbf3d541a9c9161a3d999362580f /lua/plugins
parentd467d38fc19ddf753c5d8daec046277f978b6f89 (diff)
Add lsp installer
Diffstat (limited to 'lua/plugins')
-rw-r--r--lua/plugins/lsp/lsp-installer.lua34
1 files changed, 34 insertions, 0 deletions
diff --git a/lua/plugins/lsp/lsp-installer.lua b/lua/plugins/lsp/lsp-installer.lua
new file mode 100644
index 0000000..876adad
--- /dev/null
+++ b/lua/plugins/lsp/lsp-installer.lua
@@ -0,0 +1,34 @@
+-- LSP installer.
+
+local status_ok, lsp_installer = pcall(require, "nvim-lsp-installer")
+if not status_ok then
+ return
+end
+
+-- Register a handler that will be called for all installed servers.
+-- Alternatively, you may also register handlers on specific server instances instead (see example below).
+lsp_installer.on_server_ready(function(server)
+ local opts = {
+ on_attach = require("plugins.lsp.handlers").on_attach,
+ capabilities = require("plugins.lsp.handlers").capabilities,
+ }
+
+ if server.name == "jsonls" then
+ local jsonls_opts = require("plugins.lsp.settings.jsonls")
+ opts = vim.tbl_deep_extend("force", jsonls_opts, opts)
+ end
+
+ if server.name == "sumneko_lua" then
+ local sumneko_opts = require("plugins.lsp.settings.sumneko_lua")
+ opts = vim.tbl_deep_extend("force", sumneko_opts, opts)
+ end
+
+ if server.name == "pyright" then
+ local pyright_opts = require("plugins.lsp.settings.pyright")
+ opts = vim.tbl_deep_extend("force", pyright_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
+ server:setup(opts)
+end)