mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
20 lines
375 B
Lua
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',
|
|
},
|
|
}
|