dotfiles/home/dot_config/nvim/lua/plugins/lsp.lua
2025-06-09 14:47:50 +01:00

18 lines
272 B
Lua

-- Configure LSP
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
basedpyright = {
settings = {
basedpyright = {
typeCheckingMode = "basic",
},
},
},
},
},
},
}