diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-04 23:13:28 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-04 23:13:28 +0100 |
| commit | fcb8d1ea64a6b55c20b3b528e51cdd7160290b54 (patch) | |
| tree | b5ab8c4e5bda386180ebaf55798ea9ed26ef0f0f /lua/user/lsp/lsp-installer.lua | |
| parent | 6be726d21cc88387def921ad5c75db078d714b00 (diff) | |
Added another perl language server
Diffstat (limited to 'lua/user/lsp/lsp-installer.lua')
| -rw-r--r-- | lua/user/lsp/lsp-installer.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/user/lsp/lsp-installer.lua b/lua/user/lsp/lsp-installer.lua index 4e8062c..facc124 100644 --- a/lua/user/lsp/lsp-installer.lua +++ b/lua/user/lsp/lsp-installer.lua @@ -61,6 +61,11 @@ lsp_installer.on_server_ready(function(server) opts = vim.tbl_deep_extend("force", perlnavigator_opts, opts) end + if server.name == "perlls" then + local perlls_opts = require("user.lsp.settings.perlls") + opts = vim.tbl_deep_extend("force", perlls_opts, opts) + end + if server.name == "r_language_server" then local r_language_server_opts = require("user.lsp.settings.r_language_server") opts = vim.tbl_deep_extend("force", r_language_server_opts, opts) |
