-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
100 lines (100 loc) · 2.29 KB
/
settings.json
File metadata and controls
100 lines (100 loc) · 2.29 KB
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
// 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": {
"default_model": {
"provider": "zed.dev",
"model": "claude-3-7-sonnet"
},
"version": "2"
},
"icon_theme": "Material Icon Theme",
"features": {
"edit_prediction_provider": "zed"
},
"buffer_font_family": "MartianMono Nerd Font",
"buffer_font_features": { "cv01": 7 },
"buffer_font_size": 14,
"buffer_line_height": "comfortable",
"ui_font_family": "Adwaita Sans",
"ui_font_size": 15,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Ayu Dark"
},
"border_size": 3,
"autosave": "on_window_change",
"base_keymap": "VSCode",
// "centered_layout": { "left_padding": 2, "right_padding": 2 },
"edit_predictions": {
"mode": "subtle",
"disabled_globs": [
"**/.env*",
"**/*.pem",
"**/*.key",
"**/*.cert",
"**/*.crt",
"**/secrets.yml"
]
},
"tab_bar": {
"show": true,
"show_nav_history_buttons": true,
"show_tab_bar_buttons": true
},
"tabs": {
"close_position": "right",
"file_icons": true,
"git_status": false,
"activate_on_close": "history",
"show_close_button": "hover"
},
"toolbar": {
"breadcrumbs": true,
"quick_actions": true
},
"git": {
"git_gutter": "tracked_files",
"inline_blame": {
"enabled": true,
"delay_ms": 300
}
},
"indent_guides": {
"enabled": true,
"line_width": 1,
"active_line_width": 1,
"coloring": "indent_aware",
"background_coloring": "disabled"
},
"terminal": {
"alternate_scroll": "off",
"blinking": "terminal_controlled",
"copy_on_select": false,
"dock": "bottom",
"detect_venv": {
"on": {
"directories": [".env", "env", ".venv", "venv"],
"activate_script": "default"
}
},
"env": {},
"button": false,
"shell": "system",
"toolbar": {
"breadcrumbs": true
}
// "working_directory": "current_project_directory",
// "scrollbar": {
// "show": null
// }
},
"chat_panel": {}
}