diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 12:29:21 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 12:29:21 +0100 |
| commit | 418fed300187f0cd2dbd8d8fc791dd4aa08b70fe (patch) | |
| tree | 401ce42a74856588876de2d54e9e785c9f5cc751 /lua/user/lsp/lsp-installer.lua | |
| parent | f84566dc6e9533f5fa7d377fe26c1565aa7fe213 (diff) | |
| parent | b49b14da051b693036bf8d71dc9932b31a8cafa0 (diff) | |
Merge branch 'vgg' into 21-whichkey21-whichkey
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 2fe4af2..f539050 100644 --- a/lua/user/lsp/lsp-installer.lua +++ b/lua/user/lsp/lsp-installer.lua @@ -21,6 +21,11 @@ lsp_installer.on_server_ready(function(server) opts = vim.tbl_deep_extend("force", sumneko_opts, opts) end + if server.name == "pyright" then + local pyright_opts = require("user.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) |
