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