AutoYADM commit: 2024-12-20 20:30:01

This commit is contained in:
Daniel Fichtinger 2024-12-20 20:30:01 -05:00
parent c89e2c8fdf
commit 0130645bf9
2 changed files with 10 additions and 17 deletions

View file

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

View file

@ -0,0 +1,10 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
ruff = {
autostart = false,
},
},
},
}