From 3be5adb2e162c11f7b0dad0fa4b13b8872591147 Mon Sep 17 00:00:00 2001 From: Fabian Imhof Date: Tue, 17 Jun 2025 14:36:21 +0200 Subject: [PATCH] replace csharp_ls with omnisharp --- lua/custom/plugins/csharpls-extended-lsp.lua | 1 - lua/custom/plugins/omnisharp-vim.lua | 1 + lua/plugins.lua | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 lua/custom/plugins/csharpls-extended-lsp.lua create mode 100644 lua/custom/plugins/omnisharp-vim.lua diff --git a/lua/custom/plugins/csharpls-extended-lsp.lua b/lua/custom/plugins/csharpls-extended-lsp.lua deleted file mode 100644 index f0cc03ab..00000000 --- a/lua/custom/plugins/csharpls-extended-lsp.lua +++ /dev/null @@ -1 +0,0 @@ -return { 'Decodetalkers/csharpls-extended-lsp.nvim' } diff --git a/lua/custom/plugins/omnisharp-vim.lua b/lua/custom/plugins/omnisharp-vim.lua new file mode 100644 index 00000000..acdabd23 --- /dev/null +++ b/lua/custom/plugins/omnisharp-vim.lua @@ -0,0 +1 @@ +return { 'OmniSharp/omnisharp-vim' } diff --git a/lua/plugins.lua b/lua/plugins.lua index f8b659e9..ab9fdba0 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -174,7 +174,7 @@ require('lazy').setup({ run_on = 'type', -- or `save` }, }, - csharp_ls = {}, + omnisharp = {}, netcoredbg = {}, clangd = { cmd = { 'clangd', '--background-index', '--clang-tidy' },