blob: 3aec548b7c1f942dcce4eb4c7c32d5f669fd4c2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# omnisharp
## How to enable Omnisharp Mono
By default, the `omnisharp` server will use the `dotnet` (NET6) runtime to run the server.
To run the server using the Mono runtime, set the `use_mono` setting like so:
```lua
local lspconfig = require("lspconfig")
lspconfig.omnisharp.setup {
use_mono = true
}
```
|