dotfiles/.config/nvim/lua/plugins/python.lua

22 lines
400 B
Lua

return {
"neovim/nvim-lspconfig",
opts = {
servers = {
ruff = {
autostart = false,
},
basedpyright = {
settings = {
basedpyright = {
analysis = {
typeCheckingMode = "standard",
inlayHints = {
genericTypes = true,
},
},
},
},
},
},
},
}