14 lines
274 B
Lua
14 lines
274 B
Lua
|
return {
|
||
|
{
|
||
|
"neovim/nvim-lspconfig",
|
||
|
---@class PluginLspOpts
|
||
|
opts = {
|
||
|
---@type lspconfig.options
|
||
|
servers = {
|
||
|
-- pyright will be automatically installed with mason and loaded with lspconfig
|
||
|
nim_langserver = {},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|