Files
lazynvim_plugins/lsp.lua
dietpi 1f0857150d disable pyright
disable pyright on start, instead ruff
2025-01-27 11:18:33 +00:00

14 lines
181 B
Lua

return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
pyright = {
mason = false,
autostart = false,
},
},
},
},
}