diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-10-20 13:47:23 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-10-20 13:47:23 +0200 |
commit | ccde4a982e6fa26086d662aeea2b7285cc6ab4f7 (patch) | |
tree | 82ca0a18f574143964ed769dd2d9ba1009b5a573 /lua/user/lsp/lsp-installer.lua | |
parent | 88e7c8bdb0b002be8ddad75633153c4d03a30632 (diff) | |
download | vim-ccde4a982e6fa26086d662aeea2b7285cc6ab4f7.zip vim-ccde4a982e6fa26086d662aeea2b7285cc6ab4f7.tar.gz |
switch from nvim-lsp-installer to mason
Diffstat (limited to 'lua/user/lsp/lsp-installer.lua')
-rw-r--r-- | lua/user/lsp/lsp-installer.lua | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/lua/user/lsp/lsp-installer.lua b/lua/user/lsp/lsp-installer.lua deleted file mode 100644 index 6427378..0000000 --- a/lua/user/lsp/lsp-installer.lua +++ /dev/null @@ -1,29 +0,0 @@ -local status_ok, lsp_installer = pcall(require, "nvim-lsp-installer") -if not status_ok then - print "nvim-lsp-installer init failed" - 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). --- SEE : https://github.com/williamboman/nvim-lsp-installer#setup -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 == "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 - - -- 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) |