summaryrefslogtreecommitdiff
path: root/.config/zed/settings.json
blob: faf8fea7617dcd5e2d65a6a50ab644003dd04d43 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
  "scrollbar": {
    "show": "never"
  },
  "when_closing_with_no_tabs": "close_window",
  "completions": {
    "lsp": true,
  },
  "linked_edits": true,
  "enable_language_server": true,
  "tasks": {
    "enabled": true,
  },
  "disable_ai": true,
  "outline_panel": {
    "git_status": false,
    "button": false,
  },
  "git_panel": {
    "button": false,
  },
  "agent": {
    "button": false,
    "favorite_models": [],
    "model_parameters": [],
  },
  "collaboration_panel": {
    "button": false,
  },
  "notification_panel": {
    "button": false,
  },
  "active_pane_modifiers": {
    "border_size": 0.0,
    "inactive_opacity": 1.0,
  },
  "bottom_dock_layout": "right_aligned",
  "preview_tabs": {
    "enable_preview_file_from_code_navigation": false,
    "enable_preview_from_multibuffer": false,
    "enable_preview_from_project_panel": false,
    "enabled": false,
  },
  "tab_bar": {
    "show_nav_history_buttons": false,
    "show_tab_bar_buttons": false,
    "show": false,
  },
  "title_bar": {
    "show_user_picture": false,
    "show_user_menu": false,
    "show_sign_in": false,
    "show_onboarding_banner": false,
    "show_project_items": false,
    "show_branch_name": false,
    "show_branch_icon": false,
  },
  "debugger": {
    "log_dap_communications": true,
    "button": false,
  },
  "status_bar": {
    "cursor_position_button": false,
  },
  "search": {
    "button": false,
  },
  "diagnostics": {
    "inline": {
      "enabled": true,
    },
    "lsp_pull_diagnostics": {
      "enabled": true,
    },
    "button": false,
  },
  "terminal": {
    "button": true,
  },
  "project_panel": {
    "scrollbar": {
      "show": "never",
    },
    "starts_open": true,
    "git_status": false,
    "folder_icons": true,
    "file_icons": true,
    "default_width": 160.0,
    "dock": "right",
    "button": true,
  },
  "rounded_selection": false,
  "cursor_blink": true,
  "cursor_shape": "bar",
  "ui_font_size": 16,
  "buffer_font_size": 15,
  "theme": {
    "mode": "dark",
    "light": "One Light",
    "dark": "One Dark",
  },
}