mirror of https://github.com/LazyVim/starter
15 lines
297 B
Lua
15 lines
297 B
Lua
|
return {
|
||
|
-- add pyright to lspconfig
|
||
|
{
|
||
|
"neovim/nvim-lspconfig",
|
||
|
---@class PluginLspOpts
|
||
|
opts = {
|
||
|
---@type lspconfig.options
|
||
|
servers = {
|
||
|
-- pyright will be automatically installed with mason and loaded with lspconfig
|
||
|
pyright = {},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|