aboutsummaryrefslogtreecommitdiffstats
path: root/lsp
diff options
context:
space:
mode:
authorMateen Ulhaq <mulhaq2005@gmail.com>2025-09-03 21:01:17 -0700
committerGitHub <noreply@github.com>2025-09-03 21:01:17 -0700
commit114d814365e9e73c3934ef07c5cd31c8deb6c2c5 (patch)
treebd913bc4660d068e4ab81f00da7f2192a84ed6fd /lsp
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-114d814365e9e73c3934ef07c5cd31c8deb6c2c5.tar
nvim-lspconfig-114d814365e9e73c3934ef07c5cd31c8deb6c2c5.tar.gz
nvim-lspconfig-114d814365e9e73c3934ef07c5cd31c8deb6c2c5.tar.bz2
nvim-lspconfig-114d814365e9e73c3934ef07c5cd31c8deb6c2c5.tar.lz
nvim-lspconfig-114d814365e9e73c3934ef07c5cd31c8deb6c2c5.tar.xz
nvim-lspconfig-114d814365e9e73c3934ef07c5cd31c8deb6c2c5.tar.zst
nvim-lspconfig-114d814365e9e73c3934ef07c5cd31c8deb6c2c5.zip
feat: zuban #4056
Diffstat (limited to 'lsp')
-rw-r--r--lsp/zuban.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/lsp/zuban.lua b/lsp/zuban.lua
new file mode 100644
index 00000000..3fea7a2c
--- /dev/null
+++ b/lsp/zuban.lua
@@ -0,0 +1,19 @@
+---@brief
+---
+--- https://zubanls.com/
+---
+--- A high-performance Python Language Server and type checker implemented in Rust, by the author of Jedi.
+
+---@type vim.lsp.Config
+return {
+ cmd = { 'zuban', 'server' },
+ filetypes = { 'python' },
+ root_markers = {
+ 'pyproject.toml',
+ 'setup.py',
+ 'setup.cfg',
+ 'requirements.txt',
+ 'Pipfile',
+ '.git',
+ },
+}