summaryrefslogtreecommitdiff
path: root/config/zed/settings.json
blob: c89369ee30b366bf20b37b8283f5cd28f52a1bc0 (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
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
57
58
59
60
// 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)
{
  "agent": {
    "use_modifier_to_send": true,
    "inline_assistant_model": {
      "provider": "copilot_chat",
      "model": "gpt-5-codex"
    },
    "default_model": {
      "provider": "copilot_chat",
      "model": "gpt-4.1"
    }
  },
  "edit_predictions": {
    "mode": "subtle",
    "copilot": {
      "proxy": null,
      "proxy_no_verify": null,
      "enterprise_uri": null
    },
    "enabled_in_text_threads": false
  },
  "features": {
    "edit_prediction_provider": "copilot"
  },
  "telemetry": {
    "metrics": false,
    "diagnostics": false
  },
  "base_keymap": "Atom",
  "ui_font_size": 13,
  "ui_font_family": ".SystemUIFont",
  "buffer_font_size": 13,
  "buffer_font_family": "Intel One Mono",
  "buffer_line_height": "standard",
  "soft_wrap": "bounded",
  "indent_guides": {
    "enabled": false
  },
  "gutter": {
    "folds": false
  },
  "theme": {
    "mode": "system",
    "light": "One Light",
    "dark": "Tokyo Night"
  },
  "terminal": {
    "dock": "right",
    "font_size": 11,
    "font_family": "Intel One Mono"
  }
}