settings.json
· 1.2 KiB · JSON
Raw
// 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.
{
"agent": {
"default_profile": "ask",
"default_model": {
"provider": "google",
"model": "gemini-2.5-flash-preview-04-17"
},
"model_parameters": [],
"always_allow_tool_actions": false,
"version": "2"
},
"features": {
"edit_prediction_provider": "copilot"
},
"edit_predictions": {
"disabled_globs": [],
"mode": "eager"
},
"buffer_font_family": "JetBrainsMono Nerd Font",
"theme": "Vitesse Dark Soft",
"vim_mode": false,
"ui_font_size": 16,
"buffer_font_size": 15,
"telemetry": {
"diagnostics": false,
"metrics": false
},
"format_on_save": "on",
"auto_update": false,
"terminal": {
"font_family": "Maple Mono NF"
},
"language_models": {
"google": {
"api_url": "https://api-proxy.me/gemini"
},
"openai": {
"version": "1",
"api_url": "https://burn.hair/v1"
}
}
}
1 | // Zed settings |
2 | // |
3 | // For information on how to configure Zed, see the Zed |
4 | // documentation: https://zed.dev/docs/configuring-zed |
5 | // |
6 | // To see all of Zed's default settings without changing your |
7 | // custom settings, run the `open default settings` command |
8 | // from the command palette or from `Zed` application menu. |
9 | { |
10 | "agent": { |
11 | "default_profile": "ask", |
12 | "default_model": { |
13 | "provider": "google", |
14 | "model": "gemini-2.5-flash-preview-04-17" |
15 | }, |
16 | "model_parameters": [], |
17 | "always_allow_tool_actions": false, |
18 | "version": "2" |
19 | }, |
20 | "features": { |
21 | "edit_prediction_provider": "copilot" |
22 | }, |
23 | "edit_predictions": { |
24 | "disabled_globs": [], |
25 | "mode": "eager" |
26 | }, |
27 | "buffer_font_family": "JetBrainsMono Nerd Font", |
28 | "theme": "Vitesse Dark Soft", |
29 | "vim_mode": false, |
30 | "ui_font_size": 16, |
31 | "buffer_font_size": 15, |
32 | "telemetry": { |
33 | "diagnostics": false, |
34 | "metrics": false |
35 | }, |
36 | "format_on_save": "on", |
37 | "auto_update": false, |
38 | "terminal": { |
39 | "font_family": "Maple Mono NF" |
40 | }, |
41 | "language_models": { |
42 | "google": { |
43 | "api_url": "https://api-proxy.me/gemini" |
44 | }, |
45 | "openai": { |
46 | "version": "1", |
47 | "api_url": "https://burn.hair/v1" |
48 | } |
49 | } |
50 | } |
51 |