dotfiles/home/dot_config/nvim/lua/plugins/lsp.lua

19 lines
272 B
Lua
Raw Normal View History

2024-10-08 12:37:20 +01:00
-- Configure LSP
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
basedpyright = {
settings = {
basedpyright = {
typeCheckingMode = "basic",
},
},
},
2024-10-08 12:37:20 +01:00
},
},
},
}