From 91c3e3187bed3290b930337907b7ce7a279f55c6 Mon Sep 17 00:00:00 2001 From: AeroGlory Date: Thu, 5 Feb 2026 22:18:27 -0500 Subject: [PATCH] Added C# support (i think) --- lua/plugins/lsp/mason.lua | 10 +++++++++- lua/plugins/lsp/roslyn.lua | 8 ++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 lua/plugins/lsp/roslyn.lua diff --git a/lua/plugins/lsp/mason.lua b/lua/plugins/lsp/mason.lua index 08a7e84..3b9d2a0 100644 --- a/lua/plugins/lsp/mason.lua +++ b/lua/plugins/lsp/mason.lua @@ -1,4 +1,12 @@ return { "mason-org/mason.nvim", - opts = {} + opts = { + { + registries = { + "github:mason-org/mason-registry", + "github:Crashdummyy/mason-registry", + }, + } + + } } diff --git a/lua/plugins/lsp/roslyn.lua b/lua/plugins/lsp/roslyn.lua new file mode 100644 index 0000000..9036eaf --- /dev/null +++ b/lua/plugins/lsp/roslyn.lua @@ -0,0 +1,8 @@ +return { + "seblyng/roslyn.nvim", + ---@module 'roslyn.config' + ---@type RoslynNvimConfig + opts = { + -- your configuration comes here; leave empty for default settings + }, +}