ChristianChiarulli / nvim

My neovim config
GNU General Public License v3.0
963 stars 246 forks source link

Problems with config of omnisharp(C#) #38

Closed Izaird closed 2 years ago

Izaird commented 2 years ago

``I'm trying to config omnisharp to use the mono run time I follow the instructions but it doesn't seem to work I don't know if I doung something wrong.

This is my file in lsp/settings/omnisharp.lua return { use_mono = true, }

Izaird commented 2 years ago

I solved it but I don't think is the best way to do it

` if server == "omnisharp" then

require("lspconfig").omnisharp.setup {
  use_mono = true,
  on_attach = require("user.lsp.handlers").on_attach,
  capabilities = require("user.lsp.handlers").capabilities,
}
goto continue

end `