csharp.md
1# C#
2
3C# support is available through the [C# extension](https://github.com/zed-industries/zed/tree/main/extensions/csharp).
4
5## Configuration
6
7The `OmniSharp` binary can be configured in a Zed settings file with:
8
9```jsonc
10{
11 "lsp": {
12 "omnisharp": {
13 "binary": {
14 "path": "/path/to/OmniSharp",
15 "args": ["optional", "additional", "args", "-lsp"],
16 },
17 },
18 },
19}
20```