-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzed-settings
38 lines (38 loc) · 892 Bytes
/
zed-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"outline_panel": {
"dock": "right"
},
"project_panel": {
"dock": "right"
},
"ui_font_size": 16,
"buffer_font_size": 18,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "One Dark"
},
"cursor_blink": false,
"vim_mode": true,
"relative_line_numbers": true,
"buffer_line_height": "standard",
"wrap_guides": [80, 100],
"indent_guides": {
"active_line_width": 2,
"coloring": "indent_aware"
},
"inlay_hints": {
"enabled": false
},
"buffer_font_features": {
"calt": false // Disable ligatures:
}
}