-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzed-settings.jsonc
More file actions
34 lines (33 loc) · 861 Bytes
/
zed-settings.jsonc
File metadata and controls
34 lines (33 loc) · 861 Bytes
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
// 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 `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"vim_mode": true,
"ui_font_size": 16,
"buffer_font_size": 16,
"theme": {
"mode": "system",
"light": "Rosé Pine Moon",
"dark": "Rosé Pine"
},
"features": {
// Which inline completion provider to use.
"edit_prediction_provider": "none"
},
"agent": {
"enabled": false,
"version": "2"
},
"telemetry": {
// Send debug info like crash reports.
"diagnostics": false,
// Send anonymized usage data like what languages you're using Zed with.
"metrics": false
},
"soft_wrap": "editor_width"
}