@@ -1179,7 +1179,7 @@ Or to set a `socks5` proxy:
- Setting: `search`
- Default:
-```
+```json
"search": {
"whole_word": false,
"case_sensitive": false,
@@ -1516,14 +1516,14 @@ The name of any font family installed on the user's system
See Buffer Font Features
-```jsonc
+```json
{
"terminal": {
"font_features": {
- "calt": false,
+ "calt": false
// See Buffer Font Features for more features
- },
- },
+ }
+ }
}
```
@@ -1537,33 +1537,33 @@ See Buffer Font Features
1. Use a line height that's `comfortable` for reading, 1.618. (default)
-```jsonc
+```json
{
"terminal": {
- "line_height": "comfortable",
- },
+ "line_height": "comfortable"
+ }
}
```
2. Use a `standard` line height, 1.3. This option is useful for TUIs, particularly if they use box characters
-```jsonc
+```json
{
"terminal": {
- "line_height": "standard",
- },
+ "line_height": "standard"
+ }
}
```
3. Use a custom line height.
-```jsonc
+```json
{
"terminal": {
"line_height": {
- "custom": 2,
- },
- },
+ "custom": 2
+ }
+ }
}
```
@@ -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"]
+ }
+ }
+ }
}
```
@@ -33,14 +33,14 @@ You can configure the use of [typescript-language-server](https://github.com/typ
Prettier will also be used for TypeScript files by default. To disable this:
-```jsonc
+```json
{
"languages": {
"TypeScript": {
- "prettier": { "allowed": false },
- },
+ "prettier": { "allowed": false }
+ }
//...
- },
+ }
}
```