diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-09-04 04:01:27 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-09-04 04:01:27 +0000 |
| commit | 3e89e4973d784e1c966517e528b3a30395403fa7 (patch) | |
| tree | 417980cbd21e5407d02d2786d1b7b8e63ffa5731 | |
| parent | feat: zuban #4056 (diff) | |
| download | nvim-lspconfig-3e89e4973d784e1c966517e528b3a30395403fa7.tar nvim-lspconfig-3e89e4973d784e1c966517e528b3a30395403fa7.tar.gz nvim-lspconfig-3e89e4973d784e1c966517e528b3a30395403fa7.tar.bz2 nvim-lspconfig-3e89e4973d784e1c966517e528b3a30395403fa7.tar.lz nvim-lspconfig-3e89e4973d784e1c966517e528b3a30395403fa7.tar.xz nvim-lspconfig-3e89e4973d784e1c966517e528b3a30395403fa7.tar.zst nvim-lspconfig-3e89e4973d784e1c966517e528b3a30395403fa7.zip | |
docs: update configs.md
skip-checks: true
| -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" } +< + ============================================================================== |
