diff options
| -rw-r--r-- | doc/configs.md | 28 | ||||
| -rw-r--r-- | doc/configs.txt | 20 |
2 files changed, 48 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 25531a83..e5a23b60 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -373,6 +373,7 @@ Nvim by running `:help lspconfig-all`. - [ziggy_schema](#ziggy_schema) - [zk](#zk) - [zls](#zls) +- [zuban](#zuban) ## ada_ls @@ -13943,3 +13944,30 @@ Default config: --- +## zuban + +https://zubanls.com/ + +A high-performance Python Language Server and type checker implemented in Rust, by the author of Jedi. + +Snippet to enable the language server: +```lua +vim.lsp.enable('zuban') +``` + +Default config: +- `cmd` : + ```lua + { "zuban", "server" } + ``` +- `filetypes` : + ```lua + { "python" } + ``` +- `root_markers` : + ```lua + { "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } + ``` + +--- + diff --git a/doc/configs.txt b/doc/configs.txt index dc6748a2..eda1cde6 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -10385,6 +10385,26 @@ Default config: - `workspace_required` : `false` < +------------------------------------------------------------------------------ +zuban + +https://zubanls.com/ + +A high-performance Python Language Server and type checker implemented in Rust, by the author of Jedi. + +Snippet to enable the language server: >lua + vim.lsp.enable('zuban') + + +Default config: +- cmd: >lua + { "zuban", "server" } +- filetypes: >lua + { "python" } +- root_markers: >lua + { "pyproject.toml", "setup.py", "setup.cfg", "requirements.txt", "Pipfile", ".git" } +< + ============================================================================== |
