16 lines
418 B
Lua
16 lines
418 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'pyright-langserver', '--stdio' },
|
|
settings = {
|
|
python = {
|
|
analysis = {
|
|
typeCheckingMode = 'basic',
|
|
autoSearchPaths = true,
|
|
useLibraryCodeForTypes = true,
|
|
},
|
|
},
|
|
},
|
|
filetypes = { 'python' },
|
|
root_markers = { 'pyproject.toml', 'setup.py', 'requirements.txt', '.git' },
|
|
}
|