diff options
| author | Dionisio E Alonso <baco@users.noreply.github.com> | 2024-03-18 03:07:59 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-18 14:07:59 +0800 |
| commit | 06db78c2edb4b29f42de87aa52c50023f3720528 (patch) | |
| tree | 1a61c2c68ed414279606164990d5f6abb97eb32c /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-06db78c2edb4b29f42de87aa52c50023f3720528.tar nvim-lspconfig-06db78c2edb4b29f42de87aa52c50023f3720528.tar.gz nvim-lspconfig-06db78c2edb4b29f42de87aa52c50023f3720528.tar.bz2 nvim-lspconfig-06db78c2edb4b29f42de87aa52c50023f3720528.tar.lz nvim-lspconfig-06db78c2edb4b29f42de87aa52c50023f3720528.tar.xz nvim-lspconfig-06db78c2edb4b29f42de87aa52c50023f3720528.tar.zst nvim-lspconfig-06db78c2edb4b29f42de87aa52c50023f3720528.zip | |
Correct schema for LSP server (#3079)
* feat: add basedpyright support
* fix(basedpyright): correct settings schema
Settings are stored under a different key for this fork. Instead of
using the original `python` key, now settings specific to this LSP
server are stored under `basedpyright` map key.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/basedpyright.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/server_configurations/basedpyright.lua b/lua/lspconfig/server_configurations/basedpyright.lua index 9d547951..a360e8c9 100644 --- a/lua/lspconfig/server_configurations/basedpyright.lua +++ b/lua/lspconfig/server_configurations/basedpyright.lua @@ -49,7 +49,7 @@ return { end, single_file_support = true, settings = { - python = { + basedpyright = { analysis = { autoSearchPaths = true, useLibraryCodeForTypes = true, |
