nvim-lspconfig/lsp/zuban.lua
2025-09-03 21:01:17 -07:00

20 lines
375 B
Lua

---@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',
},
}