docs: Use json to fix syntax highlighting (#17884)

This follows up the [issue with mdbook notpeter
mentioned](https://github.com/zed-industries/zed/pull/17864#issuecomment-2353089065)
by replacing `jsonc` where used in the docs with `json`.

Additionally, one missing `json` - highlight was added for the
search-section.

Release Notes:

- N/A
This commit is contained in:
Finn Evers
2024-09-16 11:04:56 -04:00
committed by GitHub
parent 2cae6f3e08
commit 22db569adf
3 changed files with 24 additions and 24 deletions
+5 -5
View File
@@ -11,15 +11,15 @@ C# support is available through the [C# extension](https://github.com/zed-indust
The `OmniSharp` binary can be configured in a Zed settings file with:
```jsonc
```json
{
"lsp": {
"omnisharp": {
"binary": {
"path": "/path/to/OmniSharp",
"args": ["optional", "additional", "args", "-lsp"],
},
},
},
"args": ["optional", "additional", "args", "-lsp"]
}
}
}
}
```