blob: de1a865a87db4bdc63759ba8ab0a361e1103562b (
plain)
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
|
// 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,
"assistant": {
"default_model": {
"provider": "ollama",
"model": "qwen2.5-coder:latest"
},
"version": "2"
},
"telemetry": {
"metrics": false,
"diagnostics": false
},
"ui_font_size": 15,
"buffer_font_size": 13,
"theme": {
"mode": "system",
"light": "Catppuccin Latte - No Italics",
"dark": "One Dark"
}
}
|