mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-30 22:59:48 +02:00
13 lines
319 B
Lua
13 lines
319 B
Lua
|
require('lspconfig').pyright.setup {
|
||
|
settings = {
|
||
|
python = {
|
||
|
analysis = {
|
||
|
typeCheckingMode = 'off', -- disables type checking
|
||
|
diagnosticMode = 'openFilesOnly', -- optional: only analyze open files
|
||
|
autoSearchPaths = true,
|
||
|
useLibraryCodeForTypes = true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|