18 lines
423 B
Lua
18 lines
423 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
settings = {
|
|
python = {
|
|
analysis = {
|
|
autoSearchPaths = true,
|
|
diagnosticMode = "openFilesOnly",
|
|
useLibraryCodeForTypes = true,
|
|
typeCheckingMode = "strict",
|
|
stubPath = "stubs",
|
|
},
|
|
},
|
|
pyright = {
|
|
disableLanguageServices = false,
|
|
},
|
|
},
|
|
}
|