refactor(nvim): improve pyright config

This commit is contained in:
Price Hiller 2023-09-28 16:17:07 -05:00
parent 6e0aaf7e33
commit cea7fd6e0b
No known key found for this signature in database

View File

@ -332,6 +332,12 @@ return {
-- NOTE: PYTHON LSP
lspconfig.pyright.setup({
python = {
analysis = {
diagnosticMode = "workspace",
typeCheckingMode = "strict"
}
},
capabilities = lsp_capabilities,
on_attach = on_attach
})