dotfiles/.config/nvim/lua/plugins/basedpyright.lua

19 lines
349 B
Lua

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