AutoYADM commit: 2024-12-16 18:50:04

This commit is contained in:
Daniel Fichtinger 2024-12-16 18:50:04 -05:00
parent 012fef1016
commit dbe396b5c0

View file

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