disable pyright

disable pyright on start, instead ruff
This commit is contained in:
2025-01-27 11:18:33 +00:00
commit 1f0857150d

13
lsp.lua Normal file
View File

@@ -0,0 +1,13 @@
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
pyright = {
mason = false,
autostart = false,
},
},
},
},
}