nvim/lua/plugins/lspconfig.lua
2023-05-12 19:55:45 -07:00

13 lines
273 B
Lua

return {
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- pyright will be automatically installed with mason and loaded with lspconfig
rust_analyzer = {},
},
},
},
}