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

36 lines
692 B
Lua

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