Skip to content

Commit 33b29b7

Browse files
committed
wip - replace omnisharp with roslyn server 🔧
1 parent 81873da commit 33b29b7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

nvim/lua/plugins/lspconfig.lua

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,6 @@ return {
6666
cmd = { bicep_path },
6767
})
6868

69-
-- C#
70-
local omnisharp_path = vim.fn.stdpath("data") .. "/mason/packages/omnisharp/libexec/omnisharp.dll"
71-
require("lspconfig").omnisharp.setup({
72-
cmd = { "dotnet", omnisharp_path },
73-
enable_ms_build_load_projects_on_demand = true,
74-
})
75-
7669
-- Lua
7770
require("lspconfig").lua_ls.setup({
7871
on_init = function(client)

nvim/lua/plugins/roslyn.lua

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
return {
2+
"seblj/roslyn.nvim",
3+
ft = { "cs" },
4+
-- TODO: Add build function that handles roslyn install until Mason supports it:
5+
-- https://github.com/mason-org/mason-registry/pull/6330
6+
opts = {},
7+
}

0 commit comments

Comments
 (0)