summaryrefslogtreecommitdiff
path: root/lua/config/lsp/lsp-installer.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config/lsp/lsp-installer.lua')
-rw-r--r--lua/config/lsp/lsp-installer.lua40
1 files changed, 20 insertions, 20 deletions
diff --git a/lua/config/lsp/lsp-installer.lua b/lua/config/lsp/lsp-installer.lua
index 87c53cf..8bd6b98 100644
--- a/lua/config/lsp/lsp-installer.lua
+++ b/lua/config/lsp/lsp-installer.lua
@@ -2,33 +2,33 @@
local status_ok, lsp_installer = pcall(require, "nvim-lsp-installer")
if not status_ok then
- return
+ 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("config.lsp.handlers").on_attach,
- capabilities = require("config.lsp.handlers").capabilities,
- }
+ local opts = {
+ on_attach = require("config.lsp.handlers").on_attach,
+ capabilities = require("config.lsp.handlers").capabilities,
+ }
- if server.name == "jsonls" then
- local jsonls_opts = require("config.lsp.settings.jsonls")
- opts = vim.tbl_deep_extend("force", jsonls_opts, opts)
- end
+ if server.name == "jsonls" then
+ local jsonls_opts = require "config.lsp.settings.jsonls"
+ opts = vim.tbl_deep_extend("force", jsonls_opts, opts)
+ end
- if server.name == "sumneko_lua" then
- local sumneko_opts = require("config.lsp.settings.sumneko_lua")
- opts = vim.tbl_deep_extend("force", sumneko_opts, opts)
- end
+ if server.name == "sumneko_lua" then
+ local sumneko_opts = require "config.lsp.settings.sumneko_lua"
+ opts = vim.tbl_deep_extend("force", sumneko_opts, opts)
+ end
- if server.name == "pyright" then
- local pyright_opts = require("config.lsp.settings.pyright")
- opts = vim.tbl_deep_extend("force", pyright_opts, opts)
- end
+ if server.name == "pyright" then
+ local pyright_opts = require "config.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)
+ -- 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)