mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 16:04:05 +00:00
13 lines
332 B
Lua
13 lines
332 B
Lua
-- Pyright (Python) language server configuration
|
|
return {
|
|
settings = {
|
|
python = {
|
|
analysis = {
|
|
typeCheckingMode = "basic",
|
|
autoSearchPaths = true,
|
|
useLibraryCodeForTypes = true,
|
|
diagnosticMode = "workspace",
|
|
},
|
|
},
|
|
},
|
|
}
|