From b760e0912739bf73b8b26c50a13a33f8a0ce477c Mon Sep 17 00:00:00 2001 From: Franciszek Malinka Date: Sun, 10 Apr 2022 14:57:14 +0200 Subject: My current configuration --- lua/user/lsp/lsp-installer.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lua/user/lsp/lsp-installer.lua (limited to 'lua/user/lsp/lsp-installer.lua') diff --git a/lua/user/lsp/lsp-installer.lua b/lua/user/lsp/lsp-installer.lua new file mode 100644 index 0000000..7ed988c --- /dev/null +++ b/lua/user/lsp/lsp-installer.lua @@ -0,0 +1,20 @@ +local status_ok, lsp_installer = pcall(require, "nvim-lsp-installer") +if not status_ok then + print "nvim-lsp-installer not opened correctly" + return +end + + +lsp_installer.on_server_ready(function(server) + local opts = { + on_attach = require("user.lsp.handlers").on_attach, + capabilities = require("user.lsp.handlers").capabilities, + } + + 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 + + server:setup(opts) +end) -- cgit v1.2.3