-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
56 lines (56 loc) · 1.22 KB
/
settings.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// 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.
{
"theme": "Solarized Dark",
"telemetry": {
"metrics": false,
"diagnostics": false
},
"vim_mode": true,
"ui_font_size": 15,
"buffer_font_size": 15,
"languages": {
"Plain Text": {
"preferred_line_length": 80,
"wrap_guides": [80],
"soft_wrap": "none"
},
"Markdown": {
"preferred_line_length": 80,
"wrap_guides": [80],
"soft_wrap": "none"
},
"JSON": {
"prettier": { "allowed": true, "parser": "json" }
},
"Git Commit": {
"preferred_line_length": 72,
"wrap_guides": [50, 72],
"soft_wrap": "none"
}
},
"assistant": {
"default_model": {
"provider": "copilot_chat",
"model": "o3-mini"
},
"version": "2"
},
"git": {
"inline_blame": {
"enabled": false
}
},
"terminal": {
"blinking": "on"
},
"inline_completions": {
"disabled_globs": [".env", "journal/*.md"]
}
}