-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
155 lines (155 loc) · 3.88 KB
/
settings.json
File metadata and controls
155 lines (155 loc) · 3.88 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// 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 the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"agent": {
"default_profile": "ask",
"dock": "left",
"default_model": {
"provider": "copilot_chat",
"model": "gpt-5",
},
},
"base_keymap": "VSCode",
"buffer_font_family": "Hasklig",
"buffer_font_size": 15,
"buffer_font_weight": 500,
"buffer_line_height": {
"custom": 2.15,
},
"collaboration_panel": {
"button": false,
},
"current_line_highlight": "all",
"diagnostics": {
"button": true,
"include_warnings": true,
"lsp_pull_diagnostics": {
"enabled": true,
"debounce_ms": 50,
},
"inline": {
"enabled": false,
"update_debounce_ms": 150,
"padding": 4,
"min_column": 0,
"max_severity": null,
},
},
"edit_predictions": {
"mode": "eager",
},
"ensure_final_newline_on_save": true,
"extend_comment_on_newline": false,
"file_scan_inclusions": [".env", ".env.*"],
"format_on_save": "on",
"icon_theme": "Catppuccin Frappé",
"indent_guides": {
"active_line_width": 2,
"enabled": true,
"line_width": 1,
"coloring": "indent_aware",
"background_coloring": "disabled",
},
"languages": {
"TypeScript": {
"language_servers": ["tsgo", "vtsls", "tailwindcss-language-server"],
},
},
"linked_edits": true,
"lsp": {
"biome": {
"settings": {
"require_config_file": true,
},
},
"tailwindcss-language-server": {
"settings": {
"classFunctions": ["cva", "cx", "cn"],
"experimental": {
"classRegex": ["[cls|className]\\s\\:\\=\\s\"([^\"]*)"],
},
},
},
"vtsls": {
"settings": {
"javascript": { "tsserver": { "maxTsServerMemory": 10240 } },
"typescript": { "tsserver": { "maxTsServerMemory": 10240 } },
},
},
},
"lsp_document_colors": "inlay",
"preferred_line_length": 110,
"preview_tabs": {
"enable_keep_preview_on_code_navigation": false,
"enable_preview_from_file_finder": false,
"enabled": true,
},
"project_panel": {
"auto_fold_dirs": true,
"auto_reveal_entries": false,
"default_width": 280,
"dock": "right",
"file_icons": true,
"folder_icons": false,
"git_status": true,
"indent_size": 8,
"show_diagnostics": "errors",
},
"restore_on_file_reopen": true,
"restore_on_startup": "last_session",
"show_whitespaces": "boundary",
"soft_wrap": "editor_width",
"selection_highlight": true,
"tabs": {
"close_position": "right",
"show_diagnostics": "errors",
"file_icons": true,
"git_status": true,
"show_close_button": "hover",
},
"terminal": {
"dock": "right",
"font_family": "Hasklig",
"blinking": "on",
"font_weight": 500,
"font_size": 14,
"font_features": {
"liga": true,
"calt": true,
},
"detect_venv": {
"on": {
// Default directories to search for virtual environments, relative
// to the current working directory. We recommend overriding this
// in your project's settings, rather than globally.
"directories": [".env", ".env.local", "env", ".venv", "venv"],
// Can also be `csh`, `fish`, and `nushell`
"activate_script": "default",
},
},
},
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Catppuccin Macchiato",
},
"title_bar": {
"show_sign_in": false,
"show_user_picture": false,
},
"toolbar": {
// "breadcrumbs": false,
"quick_actions": false,
},
"ui_font_size": 16,
"ui_font_family": "Mona Sans",
"ui_font_weight": 500,
"use_autoclose": true,
"when_closing_with_no_tabs": "keep_window_open",
}