nvim/lua/lsp/pyright.lua
2026-02-20 22:34:08 -05:00

12 lines
282 B
Lua

return {
settings = {
python = {
analysis = {
typeCheckingMode = 'basic',
autoSearchPaths = true,
useLibraryCodeForTypes = true,
diagnosticMode = 'workspace',
},
},
},
}