dotfiles/home/private_dot_config/nvim/lua/plugins/lsp.lua
2023-05-28 16:22:25 -05:00

12 lines
247 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 = {},
},
},
}