This commit is contained in:
MasterGordon 2025-10-16 14:54:54 +02:00
parent 87bea223e7
commit d516aa3050
2 changed files with 18 additions and 1 deletions

View File

@ -175,6 +175,14 @@ require('lazy').setup({
}, },
}, },
}, },
{
'seblyng/roslyn.nvim',
---@module 'roslyn.config'
---@type RoslynNvimConfig
opts = {
-- your configuration comes here; leave empty for default settings
},
},
}) })
local a = '' local a = ''

View File

@ -1,7 +1,15 @@
return { return {
'neovim/nvim-lspconfig', 'neovim/nvim-lspconfig',
dependencies = { dependencies = {
{ 'mason-org/mason.nvim', opts = {} }, {
'mason-org/mason.nvim',
opts = {
registries = {
'github:mason-org/mason-registry',
'github:Crashdummyy/mason-registry',
},
},
},
'mason-org/mason-lspconfig.nvim', 'mason-org/mason-lspconfig.nvim',
{ 'j-hui/fidget.nvim', opts = { { 'j-hui/fidget.nvim', opts = {
notification = { notification = {
@ -136,6 +144,7 @@ return {
}, },
gopls = {}, gopls = {},
rust_analyzer = {}, rust_analyzer = {},
roslyn = {},
} }
local ensure_installed = vim.tbl_keys(servers or {}) local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, { vim.list_extend(ensure_installed, {