We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81873da commit 33b29b7Copy full SHA for 33b29b7
nvim/lua/plugins/lspconfig.lua
@@ -66,13 +66,6 @@ return {
66
cmd = { bicep_path },
67
})
68
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
-
76
-- Lua
77
require("lspconfig").lua_ls.setup({
78
on_init = function(client)
nvim/lua/plugins/roslyn.lua
@@ -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