blob: 3fea7a2c10aa99c968156b9b64d40ac67900efb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
},
}
|