summaryrefslogtreecommitdiff
path: root/zed/settings.json
blob: a8e97c34255f689620a403c656379b039b9a23c1 (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
// 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)
{
  "assistant": {
    "default_model": {
      "provider": "lmstudio",
      "model": "qwen2.5-coder-3b-instruct"
    },
    "version": "2"
  },
  "base_keymap": "JetBrains",
  "telemetry": {
    "metrics": false
  },
  "vim_mode": true,
  "ui_font_size": 15,
  "buffer_font_size": 15,
  "buffer_font_features": {
    // Disable ligatures:
    "calt": false
  },
  "theme": {
    "mode": "system",
    "light": "Ayu Dark",
    "dark": "One Dark"
  },
  "relative_line_numbers": true
}