12 lines
184 B
Lua
12 lines
184 B
Lua
|
require'lspconfig'.pyright.setup({
|
||
|
on_attach = on_attach,
|
||
|
flags = lsp_flags,
|
||
|
settings = {
|
||
|
python = {
|
||
|
analysis = {
|
||
|
typeCheckingMode = "off"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|