1{
2 // The name of the Zed theme to use for the UI
3 "theme": "One Dark",
4 // The name of a base set of key bindings to use.
5 // This setting can take four values, each named after another
6 // text editor:
7 //
8 // 1. "VSCode"
9 // 2. "JetBrains"
10 // 3. "SublimeText"
11 // 4. "Atom"
12 "base_keymap": "VSCode",
13 // Features that can be globally enabled or disabled
14 "features": {
15 // Show Copilot icon in status bar
16 "copilot": true
17 },
18 // The name of a font to use for rendering text in the editor
19 "buffer_font_family": "Zed Mono",
20 // The OpenType features to enable for text in the editor.
21 "buffer_font_features": {
22 // Disable ligatures:
23 // "calt": false
24 },
25 // The default font size for text in the editor
26 "buffer_font_size": 15,
27 // Set the buffer's line height.
28 // May take 3 values:
29 // 1. Use a line height that's comfortable for reading (1.618)
30 // "line_height": "comfortable"
31 // 2. Use a standard line height, (1.3)
32 // "line_height": "standard",
33 // 3. Use a custom line height
34 // "line_height": {
35 // "custom": 2
36 // },
37 "buffer_line_height": "comfortable",
38 // The factor to grow the active pane by. Defaults to 1.0
39 // which gives the same size as all other panes.
40 "active_pane_magnification": 1.0,
41 // Whether to enable vim modes and key bindings
42 "vim_mode": false,
43 // Whether to show the informational hover box when moving the mouse
44 // over symbols in the editor.
45 "hover_popover_enabled": true,
46 // Whether to confirm before quitting Zed.
47 "confirm_quit": false,
48 // Whether the cursor blinks in the editor.
49 "cursor_blink": true,
50 // Whether to pop the completions menu while typing in an editor without
51 // explicitly requesting it.
52 "show_completions_on_input": true,
53 // Whether to show wrap guides in the editor. Setting this to true will
54 // show a guide at the 'preferred_line_length' value if softwrap is set to
55 // 'preferred_line_length', and will show any additional guides as specified
56 // by the 'wrap_guides' setting.
57 "show_wrap_guides": true,
58 // Character counts at which to show wrap guides in the editor.
59 "wrap_guides": [],
60 // Whether to use additional LSP queries to format (and amend) the code after
61 // every "trigger" symbol input, defined by LSP server capabilities.
62 "use_on_type_format": true,
63 // Controls whether copilot provides suggestion immediately
64 // or waits for a `copilot::Toggle`
65 "show_copilot_suggestions": true,
66 // Whether to show tabs and spaces in the editor.
67 // This setting can take two values:
68 //
69 // 1. Draw tabs and spaces only for the selected text (default):
70 // "selection"
71 // 2. Do not draw any tabs or spaces:
72 // "none"
73 // 3. Draw all invisible symbols:
74 // "all"
75 "show_whitespaces": "selection",
76 // Settings related to calls in Zed
77 "calls": {
78 // Join calls with the microphone muted by default
79 "mute_on_join": false
80 },
81 // Scrollbar related settings
82 "scrollbar": {
83 // When to show the scrollbar in the editor.
84 // This setting can take four values:
85 //
86 // 1. Show the scrollbar if there's important information or
87 // follow the system's configured behavior (default):
88 // "auto"
89 // 2. Match the system's configured behavior:
90 // "system"
91 // 3. Always show the scrollbar:
92 // "always"
93 // 4. Never show the scrollbar:
94 // "never"
95 "show": "auto",
96 // Whether to show git diff indicators in the scrollbar.
97 "git_diff": true,
98 // Whether to show selections in the scrollbar.
99 "selections": true
100 },
101 "relative_line_numbers": false,
102 // Inlay hint related settings
103 "inlay_hints": {
104 // Global switch to toggle hints on and off, switched off by default.
105 "enabled": false,
106 // Toggle certain types of hints on and off, all switched on by default.
107 "show_type_hints": true,
108 "show_parameter_hints": true,
109 // Corresponds to null/None LSP hint type value.
110 "show_other_hints": true
111 },
112 "project_panel": {
113 // Default width of the project panel.
114 "default_width": 240,
115 // Where to dock project panel. Can be 'left' or 'right'.
116 "dock": "left",
117 // Whether to show file icons in the project panel.
118 "file_icons": true,
119 // Whether to show folder icons or chevrons for directories in the project panel.
120 "folder_icons": true,
121 // Whether to show the git status in the project panel.
122 "git_status": true,
123 // Amount of indentation for nested items.
124 "indent_size": 20
125 },
126 "collaboration_panel": {
127 // Whether to show the collaboration panel button in the status bar.
128 "button": true,
129 // Where to dock channels panel. Can be 'left' or 'right'.
130 "dock": "left",
131 // Default width of the channels panel.
132 "default_width": 240
133 },
134 "chat_panel": {
135 // Whether to show the collaboration panel button in the status bar.
136 "button": true,
137 // Where to dock channels panel. Can be 'left' or 'right'.
138 "dock": "right",
139 // Default width of the channels panel.
140 "default_width": 240
141 },
142 "notification_panel": {
143 // Whether to show the collaboration panel button in the status bar.
144 "button": true,
145 // Where to dock channels panel. Can be 'left' or 'right'.
146 "dock": "right",
147 // Default width of the channels panel.
148 "default_width": 240
149 },
150 "assistant": {
151 // Whether to show the assistant panel button in the status bar.
152 "button": true,
153 // Where to dock the assistant. Can be 'left', 'right' or 'bottom'.
154 "dock": "right",
155 // Default width when the assistant is docked to the left or right.
156 "default_width": 640,
157 // Default height when the assistant is docked to the bottom.
158 "default_height": 320,
159 // The default OpenAI model to use when starting new conversations. This
160 // setting can take two values:
161 //
162 // 1. "gpt-3.5-turbo-0613""
163 // 2. "gpt-4-0613""
164 "default_open_ai_model": "gpt-4-0613"
165 },
166 // Whether the screen sharing icon is shown in the os status bar.
167 "show_call_status_icon": true,
168 // Whether to use language servers to provide code intelligence.
169 "enable_language_server": true,
170 // When to automatically save edited buffers. This setting can
171 // take four values.
172 //
173 // 1. Never automatically save:
174 // "autosave": "off",
175 // 2. Save when changing focus away from the Zed window:
176 // "autosave": "on_window_change",
177 // 3. Save when changing focus away from a specific buffer:
178 // "autosave": "on_focus_change",
179 // 4. Save when idle for a certain amount of time:
180 // "autosave": { "after_delay": {"milliseconds": 500} },
181 "autosave": "off",
182 // Settings related to the editor's tabs
183 "tabs": {
184 // Show git status colors in the editor tabs.
185 "git_status": false,
186 // Position of the close button on the editor tabs.
187 "close_position": "right"
188 },
189 // Whether or not to remove any trailing whitespace from lines of a buffer
190 // before saving it.
191 "remove_trailing_whitespace_on_save": true,
192 // Whether to start a new line with a comment when a previous line is a comment as well.
193 "extend_comment_on_newline": true,
194 // Whether or not to ensure there's a single newline at the end of a buffer
195 // when saving it.
196 "ensure_final_newline_on_save": true,
197 // Whether or not to perform a buffer format before saving
198 "format_on_save": "on",
199 // How to perform a buffer format. This setting can take two values:
200 //
201 // 1. Format code using the current language server:
202 // "formatter": "language_server"
203 // 2. Format code using an external command:
204 // "formatter": {
205 // "external": {
206 // "command": "prettier",
207 // "arguments": ["--stdin-filepath", "{buffer_path}"]
208 // }
209 // }
210 // 3. Format code using Zed's Prettier integration:
211 // "formatter": "prettier"
212 // 4. Default. Format files using Zed's Prettier integration (if applicable),
213 // or falling back to formatting via language server:
214 // "formatter": "auto"
215 "formatter": "auto",
216 // How to soft-wrap long lines of text. This setting can take
217 // three values:
218 //
219 // 1. Do not soft wrap.
220 // "soft_wrap": "none",
221 // 2. Soft wrap lines that overflow the editor:
222 // "soft_wrap": "editor_width",
223 // 3. Soft wrap lines at the preferred line length
224 // "soft_wrap": "preferred_line_length",
225 "soft_wrap": "none",
226 // The column at which to soft-wrap lines, for buffers where soft-wrap
227 // is enabled.
228 "preferred_line_length": 80,
229 // Whether to indent lines using tab characters, as opposed to multiple
230 // spaces.
231 "hard_tabs": false,
232 // How many columns a tab should occupy.
233 "tab_size": 4,
234 // Control what info is collected by Zed.
235 "telemetry": {
236 // Send debug info like crash reports.
237 "diagnostics": true,
238 // Send anonymized usage data like what languages you're using Zed with.
239 "metrics": true
240 },
241 // Automatically update Zed
242 "auto_update": true,
243 // Diagnostics configuration.
244 "diagnostics": {
245 // Whether to show warnings or not by default.
246 "include_warnings": true
247 },
248 // Git gutter behavior configuration.
249 "git": {
250 // Control whether the git gutter is shown. May take 2 values:
251 // 1. Show the gutter
252 // "git_gutter": "tracked_files"
253 // 2. Hide the gutter
254 // "git_gutter": "hide"
255 "git_gutter": "tracked_files"
256 },
257 "copilot": {
258 // The set of glob patterns for which copilot should be disabled
259 // in any matching file.
260 "disabled_globs": [
261 ".env"
262 ]
263 },
264 // Settings specific to journaling
265 "journal": {
266 // The path of the directory where journal entries are stored
267 "path": "~",
268 // What format to display the hours in
269 // May take 2 values:
270 // 1. hour12
271 // 2. hour24
272 "hour_format": "hour12"
273 },
274 // Settings specific to the terminal
275 "terminal": {
276 // What shell to use when opening a terminal. May take 3 values:
277 // 1. Use the system's default terminal configuration in /etc/passwd
278 // "shell": "system"
279 // 2. A program:
280 // "shell": {
281 // "program": "sh"
282 // }
283 // 3. A program with arguments:
284 // "shell": {
285 // "with_arguments": {
286 // "program": "/bin/bash",
287 // "arguments": ["--login"]
288 // }
289 // }
290 "shell": "system",
291 // Where to dock terminals panel. Can be 'left', 'right', 'bottom'.
292 "dock": "bottom",
293 // Default width when the terminal is docked to the left or right.
294 "default_width": 640,
295 // Default height when the terminal is docked to the bottom.
296 "default_height": 320,
297 // What working directory to use when launching the terminal.
298 // May take 4 values:
299 // 1. Use the current file's project directory. Will Fallback to the
300 // first project directory strategy if unsuccessful
301 // "working_directory": "current_project_directory"
302 // 2. Use the first project in this workspace's directory
303 // "working_directory": "first_project_directory"
304 // 3. Always use this platform's home directory (if we can find it)
305 // "working_directory": "always_home"
306 // 4. Always use a specific directory. This value will be shell expanded.
307 // If this path is not a valid directory the terminal will default to
308 // this platform's home directory (if we can find it)
309 // "working_directory": {
310 // "always": {
311 // "directory": "~/zed/projects/"
312 // }
313 // }
314 "working_directory": "current_project_directory",
315 // Set the cursor blinking behavior in the terminal.
316 // May take 4 values:
317 // 1. Never blink the cursor, ignoring the terminal mode
318 // "blinking": "off",
319 // 2. Default the cursor blink to off, but allow the terminal to
320 // set blinking
321 // "blinking": "terminal_controlled",
322 // 3. Always blink the cursor, ignoring the terminal mode
323 // "blinking": "on",
324 "blinking": "terminal_controlled",
325 // Set whether Alternate Scroll mode (code: ?1007) is active by default.
326 // Alternate Scroll mode converts mouse scroll events into up / down key
327 // presses when in the alternate screen (e.g. when running applications
328 // like vim or less). The terminal can still set and unset this mode.
329 // May take 2 values:
330 // 1. Default alternate scroll mode to on
331 // "alternate_scroll": "on",
332 // 2. Default alternate scroll mode to off
333 // "alternate_scroll": "off",
334 "alternate_scroll": "off",
335 // Set whether the option key behaves as the meta key.
336 // May take 2 values:
337 // 1. Rely on default platform handling of option key, on macOS
338 // this means generating certain unicode characters
339 // "option_to_meta": false,
340 // 2. Make the option keys behave as a 'meta' key, e.g. for emacs
341 // "option_to_meta": true,
342 "option_as_meta": false,
343 // Whether or not selecting text in the terminal will automatically
344 // copy to the system clipboard.
345 "copy_on_select": false,
346 // Any key-value pairs added to this list will be added to the terminal's
347 // environment. Use `:` to separate multiple values.
348 "env": {
349 // "KEY": "value1:value2"
350 },
351 // Set the terminal's line height.
352 // May take 3 values:
353 // 1. Use a line height that's comfortable for reading, 1.618
354 // "line_height": "comfortable"
355 // 2. Use a standard line height, 1.3. This option is useful for TUIs,
356 // particularly if they use box characters
357 // "line_height": "standard",
358 // 3. Use a custom line height.
359 // "line_height": {
360 // "custom": 2
361 // },
362 "line_height": "comfortable",
363 // Activate the python virtual environment, if one is found, in the
364 // terminal's working directory (as resolved by the working_directory
365 // setting). Set this to "off" to disable this behavior.
366 "detect_venv": {
367 "on": {
368 // Default directories to search for virtual environments, relative
369 // to the current working directory. We recommend overriding this
370 // in your project's settings, rather than globally.
371 "directories": [
372 ".env",
373 "env",
374 ".venv",
375 "venv"
376 ],
377 // Can also be 'csh', 'fish', and `nushell`
378 "activate_script": "default"
379 }
380 }
381 // Set the terminal's font size. If this option is not included,
382 // the terminal will default to matching the buffer's font size.
383 // "font_size": "15",
384 // Set the terminal's font family. If this option is not included,
385 // the terminal will default to matching the buffer's font family.
386 // "font_family": "Zed Mono",
387 // ---
388 },
389 // Difference settings for semantic_index
390 "semantic_index": {
391 "enabled": true
392 },
393 // Settings specific to our elixir integration
394 "elixir": {
395 // Change the LSP zed uses for elixir.
396 // Note that changing this setting requires a restart of Zed
397 // to take effect.
398 //
399 // May take 3 values:
400 // 1. Use the standard ElixirLS, this is the default
401 // "lsp": "elixir_ls"
402 // 2. Use the experimental NextLs
403 // "lsp": "next_ls",
404 // 3. Use a language server installed locally on your machine:
405 // "lsp": {
406 // "local": {
407 // "path": "~/next-ls/bin/start",
408 // "arguments": ["--stdio"]
409 // }
410 // },
411 //
412 "lsp": "elixir_ls"
413 },
414 // Different settings for specific languages.
415 "languages": {
416 "Plain Text": {
417 "soft_wrap": "preferred_line_length"
418 },
419 "Elixir": {
420 "tab_size": 2
421 },
422 "Go": {
423 "tab_size": 4,
424 "hard_tabs": true
425 },
426 "Markdown": {
427 "soft_wrap": "preferred_line_length"
428 },
429 "JavaScript": {
430 "tab_size": 2
431 },
432 "TypeScript": {
433 "tab_size": 2
434 },
435 "TSX": {
436 "tab_size": 2
437 },
438 "YAML": {
439 "tab_size": 2
440 },
441 "JSON": {
442 "tab_size": 2
443 }
444 },
445 // Zed's Prettier integration settings.
446 // If Prettier is enabled, Zed will use this its Prettier instance for any applicable file, if
447 // project has no other Prettier installed.
448 "prettier": {
449 // Use regular Prettier json configuration:
450 // "trailingComma": "es5",
451 // "tabWidth": 4,
452 // "semi": false,
453 // "singleQuote": true
454 },
455 // LSP Specific settings.
456 "lsp": {
457 // Specify the LSP name as a key here.
458 // "rust-analyzer": {
459 // //These initialization options are merged into Zed's defaults
460 // "initialization_options": {
461 // "checkOnSave": {
462 // "command": "clippy"
463 // }
464 // }
465 // }
466 }
467}