Last active 1746706733

settings.json Raw
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