Skip to content

Commit

Permalink
wip - replace omnisharp with roslyn server 🔧
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Sep 4, 2024
1 parent 81873da commit 33b29b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 0 additions & 7 deletions nvim/lua/plugins/lspconfig.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,6 @@ return {
cmd = { bicep_path },
})

-- C#
local omnisharp_path = vim.fn.stdpath("data") .. "/mason/packages/omnisharp/libexec/omnisharp.dll"
require("lspconfig").omnisharp.setup({
cmd = { "dotnet", omnisharp_path },
enable_ms_build_load_projects_on_demand = true,
})

-- Lua
require("lspconfig").lua_ls.setup({
on_init = function(client)
Expand Down
7 changes: 7 additions & 0 deletions nvim/lua/plugins/roslyn.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
return {
"seblj/roslyn.nvim",
ft = { "cs" },
-- TODO: Add build function that handles roslyn install until Mason supports it:
-- https://github.com/mason-org/mason-registry/pull/6330
opts = {},
}

0 comments on commit 33b29b7

Please sign in to comment.