1{
2 // The name of the Zed theme to use for the UI.
3 //
4 // `mode` is one of:
5 // - "system": Use the theme that corresponds to the system's appearance
6 // - "light": Use the theme indicated by the "light" field
7 // - "dark": Use the theme indicated by the "dark" field
8 "theme": {
9 "mode": "system",
10 "light": "One Light",
11 "dark": "One Dark"
12 },
13 "icon_theme": "Zed (Default)",
14 // The name of a base set of key bindings to use.
15 // This setting can take six values, each named after another
16 // text editor:
17 //
18 // 1. "VSCode"
19 // 2. "Atom"
20 // 3. "JetBrains"
21 // 4. "None"
22 // 5. "SublimeText"
23 // 6. "TextMate"
24 "base_keymap": "VSCode",
25 // Features that can be globally enabled or disabled
26 "features": {
27 // Which edit prediction provider to use.
28 "edit_prediction_provider": "copilot"
29 },
30 // The name of a font to use for rendering text in the editor
31 "buffer_font_family": "Zed Plex Mono",
32 // Set the buffer text's font fallbacks, this will be merged with
33 // the platform's default fallbacks.
34 "buffer_font_fallbacks": null,
35 // The OpenType features to enable for text in the editor.
36 "buffer_font_features": {
37 // Disable ligatures:
38 // "calt": false
39 },
40 // The default font size for text in the editor
41 "buffer_font_size": 15,
42 // The weight of the editor font in standard CSS units from 100 to 900.
43 "buffer_font_weight": 400,
44 // Set the buffer's line height.
45 // May take 3 values:
46 // 1. Use a line height that's comfortable for reading (1.618)
47 // "buffer_line_height": "comfortable"
48 // 2. Use a standard line height, (1.3)
49 // "buffer_line_height": "standard",
50 // 3. Use a custom line height
51 // "buffer_line_height": {
52 // "custom": 2
53 // },
54 "buffer_line_height": "comfortable",
55 // The name of a font to use for rendering text in the UI
56 // You can set this to ".SystemUIFont" to use the system font
57 "ui_font_family": "Zed Plex Sans",
58 // Set the UI's font fallbacks, this will be merged with the platform's
59 // default font fallbacks.
60 "ui_font_fallbacks": null,
61 // The OpenType features to enable for text in the UI
62 "ui_font_features": {
63 // Disable ligatures:
64 "calt": false
65 },
66 // The weight of the UI font in standard CSS units from 100 to 900.
67 "ui_font_weight": 400,
68 // The default font size for text in the UI
69 "ui_font_size": 16,
70 // How much to fade out unused code.
71 "unnecessary_code_fade": 0.3,
72 // Active pane styling settings.
73 "active_pane_modifiers": {
74 // The factor to grow the active pane by. Defaults to 1.0
75 // which gives the same size as all other panes.
76 "magnification": 1.0,
77 // Inset border size of the active pane, in pixels.
78 "border_size": 0.0,
79 // Opacity of the inactive panes. 0 means transparent, 1 means opaque.
80 // Values are clamped to the [0.0, 1.0] range.
81 "inactive_opacity": 1.0
82 },
83 // The direction that you want to split panes horizontally. Defaults to "up"
84 "pane_split_direction_horizontal": "up",
85 // The direction that you want to split panes horizontally. Defaults to "left"
86 "pane_split_direction_vertical": "left",
87 // Centered layout related settings.
88 "centered_layout": {
89 // The relative width of the left padding of the central pane from the
90 // workspace when the centered layout is used.
91 "left_padding": 0.2,
92 // The relative width of the right padding of the central pane from the
93 // workspace when the centered layout is used.
94 "right_padding": 0.2
95 },
96 // All settings related to the image viewer.
97 "image_viewer": {
98 // The unit for image file sizes.
99 // By default we're setting it to binary.
100 // The second option is decimal.
101 "unit": "binary"
102 },
103 // The key to use for adding multiple cursors
104 // Currently "alt" or "cmd_or_ctrl" (also aliased as
105 // "cmd" and "ctrl") are supported.
106 "multi_cursor_modifier": "alt",
107 // Whether to enable vim modes and key bindings.
108 "vim_mode": false,
109 // Whether to show the informational hover box when moving the mouse
110 // over symbols in the editor.
111 "hover_popover_enabled": true,
112 // Time to wait before showing the informational hover box
113 "hover_popover_delay": 350,
114 // Whether to confirm before quitting Zed.
115 "confirm_quit": false,
116 // Whether to restore last closed project when fresh Zed instance is opened.
117 "restore_on_startup": "last_session",
118 // Size of the drop target in the editor.
119 "drop_target_size": 0.2,
120 // Whether the window should be closed when using 'close active item' on a window with no tabs.
121 // May take 3 values:
122 // 1. Use the current platform's convention
123 // "when_closing_with_no_tabs": "platform_default"
124 // 2. Always close the window:
125 // "when_closing_with_no_tabs": "close_window",
126 // 3. Never close the window
127 // "when_closing_with_no_tabs": "keep_window_open",
128 "when_closing_with_no_tabs": "platform_default",
129 // What to do when the last window is closed.
130 // May take 2 values:
131 // 1. Use the current platform's convention
132 // "on_last_window_closed": "platform_default"
133 // 2. Always quit the application
134 // "on_last_window_closed": "quit_app",
135 "on_last_window_closed": "platform_default",
136 // Whether to use the system provided dialogs for Open and Save As.
137 // When set to false, Zed will use the built-in keyboard-first pickers.
138 "use_system_path_prompts": true,
139 // Whether the cursor blinks in the editor.
140 "cursor_blink": true,
141 // Cursor shape for the default editor.
142 // 1. A vertical bar
143 // "bar"
144 // 2. A block that surrounds the following character
145 // "block"
146 // 3. An underline / underscore that runs along the following character
147 // "underline"
148 // 4. A box drawn around the following character
149 // "hollow"
150 //
151 // Default: not set, defaults to "bar"
152 "cursor_shape": null,
153 // Determines whether the mouse cursor is hidden when typing in an editor or input box.
154 "hide_mouse_while_typing": true,
155 // How to highlight the current line in the editor.
156 //
157 // 1. Don't highlight the current line:
158 // "none"
159 // 2. Highlight the gutter area:
160 // "gutter"
161 // 3. Highlight the editor area:
162 // "line"
163 // 4. Highlight the full line (default):
164 // "all"
165 "current_line_highlight": "all",
166 // Whether to highlight all occurrences of the selected text in an editor.
167 "selection_highlight": true,
168 // The debounce delay before querying highlights based on the selected text.
169 "selection_highlight_debounce": 50,
170 // The debounce delay before querying highlights from the language
171 // server based on the current cursor location.
172 "lsp_highlight_debounce": 75,
173 // Whether to pop the completions menu while typing in an editor without
174 // explicitly requesting it.
175 "show_completions_on_input": true,
176 // Whether to display inline and alongside documentation for items in the
177 // completions menu
178 "show_completion_documentation": true,
179 // Show method signatures in the editor, when inside parentheses.
180 "auto_signature_help": false,
181 /// Whether to show the signature help after completion or a bracket pair inserted.
182 /// If `auto_signature_help` is enabled, this setting will be treated as enabled also.
183 "show_signature_help_after_edits": false,
184 // Whether to show wrap guides (vertical rulers) in the editor.
185 // Setting this to true will show a guide at the 'preferred_line_length' value
186 // if 'soft_wrap' is set to 'preferred_line_length', and will show any
187 // additional guides as specified by the 'wrap_guides' setting.
188 "show_wrap_guides": true,
189 // Character counts at which to show wrap guides in the editor.
190 "wrap_guides": [],
191 // Hide the values of in variables from visual display in private files
192 "redact_private_values": false,
193 // The default number of lines to expand excerpts in the multibuffer by.
194 "expand_excerpt_lines": 3,
195 // Globs to match against file paths to determine if a file is private.
196 "private_files": ["**/.env*", "**/*.pem", "**/*.key", "**/*.cert", "**/*.crt", "**/secrets.yml"],
197 // Whether to use additional LSP queries to format (and amend) the code after
198 // every "trigger" symbol input, defined by LSP server capabilities.
199 "use_on_type_format": true,
200 // Whether to automatically add matching closing characters when typing
201 // opening parenthesis, bracket, brace, single or double quote characters.
202 // For example, when you type (, Zed will add a closing ) at the correct position.
203 "use_autoclose": true,
204 // Whether to automatically surround selected text when typing opening parenthesis,
205 // bracket, brace, single or double quote characters.
206 // For example, when you select text and type (, Zed will surround the text with ().
207 "use_auto_surround": true,
208 // Whether indentation of pasted content should be adjusted based on the context.
209 "auto_indent_on_paste": true,
210 // Controls how the editor handles the autoclosed characters.
211 // When set to `false`(default), skipping over and auto-removing of the closing characters
212 // happen only for auto-inserted characters.
213 // Otherwise(when `true`), the closing characters are always skipped over and auto-removed
214 // no matter how they were inserted.
215 "always_treat_brackets_as_autoclosed": false,
216 // Controls where the `editor::Rewrap` action is allowed in the current language scope.
217 //
218 // This setting can take three values:
219 //
220 // 1. Only allow rewrapping in comments:
221 // "in_comments"
222 // 2. Only allow rewrapping in the current selection(s):
223 // "in_selections"
224 // 3. Allow rewrapping anywhere:
225 // "anywhere"
226 //
227 // When using values other than `in_comments`, it is possible for the rewrapping to produce code
228 // that is syntactically invalid. Keep this in mind when selecting which behavior you would like
229 // to use.
230 //
231 // Note: This setting has no effect in Vim mode, as rewrap is already allowed everywhere.
232 "allow_rewrap": "in_comments",
233 // Controls whether edit predictions are shown immediately (true)
234 // or manually by triggering `editor::ShowEditPrediction` (false).
235 "show_edit_predictions": true,
236 // Controls whether edit predictions are shown in a given language scope.
237 // Example: ["string", "comment"]
238 "edit_predictions_disabled_in": [],
239 // Whether to show tabs and spaces in the editor.
240 // This setting can take four values:
241 //
242 // 1. Draw tabs and spaces only for the selected text (default):
243 // "selection"
244 // 2. Do not draw any tabs or spaces:
245 // "none"
246 // 3. Draw all invisible symbols:
247 // "all"
248 // 4. Draw whitespaces at boundaries only:
249 // "boundary"
250 // For a whitespace to be on a boundary, any of the following conditions need to be met:
251 // - It is a tab
252 // - It is adjacent to an edge (start or end)
253 // - It is adjacent to a whitespace (left or right)
254 "show_whitespaces": "selection",
255 // Settings related to calls in Zed
256 "calls": {
257 // Join calls with the microphone live by default
258 "mute_on_join": false,
259 // Share your project when you are the first to join a channel
260 "share_on_join": false
261 },
262 // Toolbar related settings
263 "toolbar": {
264 // Whether to show breadcrumbs.
265 "breadcrumbs": true,
266 // Whether to show quick action buttons.
267 "quick_actions": true,
268 // Whether to show the Selections menu in the editor toolbar
269 "selections_menu": true
270 },
271 // Scrollbar related settings
272 "scrollbar": {
273 // When to show the scrollbar in the editor.
274 // This setting can take four values:
275 //
276 // 1. Show the scrollbar if there's important information or
277 // follow the system's configured behavior (default):
278 // "auto"
279 // 2. Match the system's configured behavior:
280 // "system"
281 // 3. Always show the scrollbar:
282 // "always"
283 // 4. Never show the scrollbar:
284 // "never"
285 "show": "auto",
286 // Whether to show cursor positions in the scrollbar.
287 "cursors": true,
288 // Whether to show git diff indicators in the scrollbar.
289 "git_diff": true,
290 // Whether to show buffer search results in the scrollbar.
291 "search_results": true,
292 // Whether to show selected text occurrences in the scrollbar.
293 "selected_text": true,
294 // Whether to show selected symbol occurrences in the scrollbar.
295 "selected_symbol": true,
296 // Which diagnostic indicators to show in the scrollbar:
297 // - "none" or false: do not show diagnostics
298 // - "error": show only errors
299 // - "warning": show only errors and warnings
300 // - "information": show only errors, warnings, and information
301 // - "all" or true: show all diagnostics
302 "diagnostics": "all",
303 /// Forcefully enable or disable the scrollbar for each axis
304 "axes": {
305 /// When false, forcefully disables the horizontal scrollbar. Otherwise, obey other settings.
306 "horizontal": true,
307 /// When false, forcefully disables the vertical scrollbar. Otherwise, obey other settings.
308 "vertical": true
309 }
310 },
311 // Enable middle-click paste on Linux.
312 "middle_click_paste": true,
313 // What to do when multibuffer is double clicked in some of its excerpts
314 // (parts of singleton buffers).
315 // May take 2 values:
316 // 1. Behave as a regular buffer and select the whole word (default).
317 // "double_click_in_multibuffer": "select"
318 // 2. Open the excerpt clicked as a new buffer in the new tab.
319 // "double_click_in_multibuffer": "open",
320 // For the case of "open", regular selection behavior can be achieved by holding `alt` when double clicking.
321 "double_click_in_multibuffer": "select",
322 "gutter": {
323 // Whether to show line numbers in the gutter.
324 "line_numbers": true,
325 // Whether to show code action buttons in the gutter.
326 "code_actions": true,
327 // Whether to show runnables buttons in the gutter.
328 "runnables": true,
329 // Whether to show fold buttons in the gutter.
330 "folds": true
331 },
332 "indent_guides": {
333 /// Whether to show indent guides in the editor.
334 "enabled": true,
335 /// The width of the indent guides in pixels, between 1 and 10.
336 "line_width": 1,
337 /// The width of the active indent guide in pixels, between 1 and 10.
338 "active_line_width": 1,
339 /// Determines how indent guides are colored.
340 /// This setting can take the following three values:
341 ///
342 /// 1. "disabled"
343 /// 2. "fixed"
344 /// 3. "indent_aware"
345 "coloring": "fixed",
346 /// Determines how indent guide backgrounds are colored.
347 /// This setting can take the following two values:
348 ///
349 /// 1. "disabled"
350 /// 2. "indent_aware"
351 "background_coloring": "disabled"
352 },
353 // Whether the editor will scroll beyond the last line.
354 "scroll_beyond_last_line": "one_page",
355 // The number of lines to keep above/below the cursor when scrolling.
356 "vertical_scroll_margin": 3,
357 // Whether to scroll when clicking near the edge of the visible text area.
358 "autoscroll_on_clicks": false,
359 // The number of characters to keep on either side when scrolling with the mouse
360 "horizontal_scroll_margin": 5,
361 // Scroll sensitivity multiplier. This multiplier is applied
362 // to both the horizontal and vertical delta values while scrolling.
363 "scroll_sensitivity": 1.0,
364 "relative_line_numbers": false,
365 // If 'search_wrap' is disabled, search result do not wrap around the end of the file.
366 "search_wrap": true,
367 // Search options to enable by default when opening new project and buffer searches.
368 "search": {
369 "whole_word": false,
370 "case_sensitive": false,
371 "include_ignored": false,
372 "regex": false
373 },
374 // When to populate a new search's query based on the text under the cursor.
375 // This setting can take the following three values:
376 //
377 // 1. Always populate the search query with the word under the cursor (default).
378 // "always"
379 // 2. Only populate the search query when there is text selected
380 // "selection"
381 // 3. Never populate the search query
382 // "never"
383 "seed_search_query_from_cursor": "always",
384 "use_smartcase_search": false,
385 // Inlay hint related settings
386 "inlay_hints": {
387 // Global switch to toggle hints on and off, switched off by default.
388 "enabled": false,
389 // Toggle certain types of hints on and off, all switched on by default.
390 "show_type_hints": true,
391 "show_parameter_hints": true,
392 // Corresponds to null/None LSP hint type value.
393 "show_other_hints": true,
394 // Whether to show a background for inlay hints.
395 //
396 // If set to `true`, the background will use the `hint.background` color from the current theme.
397 "show_background": false,
398 // Time to wait after editing the buffer, before requesting the hints,
399 // set to 0 to disable debouncing.
400 "edit_debounce_ms": 700,
401 // Time to wait after scrolling the buffer, before requesting the hints,
402 // set to 0 to disable debouncing.
403 "scroll_debounce_ms": 50
404 },
405 "project_panel": {
406 // Whether to show the project panel button in the status bar
407 "button": true,
408 // Default width of the project panel.
409 "default_width": 240,
410 // Where to dock the project panel. Can be 'left' or 'right'.
411 "dock": "left",
412 // Spacing between worktree entries in the project panel. Can be 'comfortable' or 'standard'.
413 "entry_spacing": "comfortable",
414 // Whether to show file icons in the project panel.
415 "file_icons": true,
416 // Whether to show folder icons or chevrons for directories in the project panel.
417 "folder_icons": true,
418 // Whether to show the git status in the project panel.
419 "git_status": true,
420 // Amount of indentation for nested items.
421 "indent_size": 20,
422 // Whether to reveal it in the project panel automatically,
423 // when a corresponding project entry becomes active.
424 // Gitignored entries are never auto revealed.
425 "auto_reveal_entries": true,
426 // Whether to fold directories automatically and show compact folders
427 // (e.g. "a/b/c" ) when a directory has only one subdirectory inside.
428 "auto_fold_dirs": true,
429 /// Scrollbar-related settings
430 "scrollbar": {
431 /// When to show the scrollbar in the project panel.
432 /// This setting can take five values:
433 ///
434 /// 1. null (default): Inherit editor settings
435 /// 2. Show the scrollbar if there's important information or
436 /// follow the system's configured behavior (default):
437 /// "auto"
438 /// 3. Match the system's configured behavior:
439 /// "system"
440 /// 4. Always show the scrollbar:
441 /// "always"
442 /// 5. Never show the scrollbar:
443 /// "never"
444 "show": null
445 },
446 /// Which files containing diagnostic errors/warnings to mark in the project panel.
447 /// This setting can take the following three values:
448 ///
449 /// 1. Do not mark any files:
450 /// "off"
451 /// 2. Only mark files with errors:
452 /// "errors"
453 /// 3. Mark files with errors and warnings:
454 /// "all"
455 "show_diagnostics": "all",
456 // Settings related to indent guides in the project panel.
457 "indent_guides": {
458 // When to show indent guides in the project panel.
459 // This setting can take two values:
460 //
461 // 1. Always show indent guides:
462 // "always"
463 // 2. Never show indent guides:
464 // "never"
465 "show": "always"
466 }
467 },
468 "outline_panel": {
469 // Whether to show the outline panel button in the status bar
470 "button": true,
471 // Default width of the outline panel.
472 "default_width": 300,
473 // Where to dock the outline panel. Can be 'left' or 'right'.
474 "dock": "left",
475 // Whether to show file icons in the outline panel.
476 "file_icons": true,
477 // Whether to show folder icons or chevrons for directories in the outline panel.
478 "folder_icons": true,
479 // Whether to show the git status in the outline panel.
480 "git_status": true,
481 // Amount of indentation for nested items.
482 "indent_size": 20,
483 // Whether to reveal it in the outline panel automatically,
484 // when a corresponding outline entry becomes active.
485 // Gitignored entries are never auto revealed.
486 "auto_reveal_entries": true,
487 /// Whether to fold directories automatically
488 /// when a directory has only one directory inside.
489 "auto_fold_dirs": true,
490 // Settings related to indent guides in the outline panel.
491 "indent_guides": {
492 // When to show indent guides in the outline panel.
493 // This setting can take two values:
494 //
495 // 1. Always show indent guides:
496 // "always"
497 // 2. Never show indent guides:
498 // "never"
499 "show": "always"
500 },
501 /// Scrollbar-related settings
502 "scrollbar": {
503 /// When to show the scrollbar in the project panel.
504 /// This setting can take five values:
505 ///
506 /// 1. null (default): Inherit editor settings
507 /// 2. Show the scrollbar if there's important information or
508 /// follow the system's configured behavior (default):
509 /// "auto"
510 /// 3. Match the system's configured behavior:
511 /// "system"
512 /// 4. Always show the scrollbar:
513 /// "always"
514 /// 5. Never show the scrollbar:
515 /// "never"
516 "show": null
517 }
518 },
519 "collaboration_panel": {
520 // Whether to show the collaboration panel button in the status bar.
521 "button": true,
522 // Where to dock the collaboration panel. Can be 'left' or 'right'.
523 "dock": "left",
524 // Default width of the collaboration panel.
525 "default_width": 240
526 },
527 "chat_panel": {
528 // When to show the chat panel button in the status bar.
529 // Can be 'never', 'always', or 'when_in_call',
530 // or a boolean (interpreted as 'never'/'always').
531 "button": "when_in_call",
532 // Where to the chat panel. Can be 'left' or 'right'.
533 "dock": "right",
534 // Default width of the chat panel.
535 "default_width": 240
536 },
537 "git_panel": {
538 // Whether to show the git panel button in the status bar.
539 "button": true,
540 // Where to the git panel. Can be 'left' or 'right'.
541 "dock": "left",
542 // Default width of the git panel.
543 "default_width": 360,
544 // Style of the git status indicator in the panel.
545 //
546 // Default: icon
547 "status_style": "icon",
548 "scrollbar": {
549 // When to show the scrollbar in the git panel.
550 //
551 // Default: inherits editor scrollbar settings
552 "show": null
553 }
554 },
555 "message_editor": {
556 // Whether to automatically replace emoji shortcodes with emoji characters.
557 // For example: typing `:wave:` gets replaced with `👋`.
558 "auto_replace_emoji_shortcode": true
559 },
560 "notification_panel": {
561 // Whether to show the notification panel button in the status bar.
562 "button": true,
563 // Where to dock the notification panel. Can be 'left' or 'right'.
564 "dock": "right",
565 // Default width of the notification panel.
566 "default_width": 380
567 },
568 "assistant": {
569 // Version of this setting.
570 "version": "2",
571 // Whether the assistant is enabled.
572 "enabled": true,
573 // Whether to show the assistant panel button in the status bar.
574 "button": true,
575 // Where to dock the assistant panel. Can be 'left', 'right' or 'bottom'.
576 "dock": "right",
577 // Default width when the assistant is docked to the left or right.
578 "default_width": 640,
579 // Default height when the assistant is docked to the bottom.
580 "default_height": 320,
581 // The default model to use when creating new chats.
582 "default_model": {
583 // The provider to use.
584 "provider": "zed.dev",
585 // The model to use.
586 "model": "claude-3-5-sonnet"
587 }
588 },
589 // The settings for slash commands.
590 "slash_commands": {
591 // Settings for the `/docs` slash command.
592 "docs": {
593 // Whether `/docs` is enabled.
594 "enabled": false
595 },
596 // Settings for the `/project` slash command.
597 "project": {
598 // Whether `/project` is enabled.
599 "enabled": false
600 }
601 },
602 // Whether the screen sharing icon is shown in the os status bar.
603 "show_call_status_icon": true,
604 // Whether to use language servers to provide code intelligence.
605 "enable_language_server": true,
606 // Whether to perform linked edits of associated ranges, if the language server supports it.
607 // For example, when editing opening <html> tag, the contents of the closing </html> tag will be edited as well.
608 "linked_edits": true,
609 // The list of language servers to use (or disable) for all languages.
610 //
611 // This is typically customized on a per-language basis.
612 "language_servers": ["..."],
613 // When to automatically save edited buffers. This setting can
614 // take four values.
615 //
616 // 1. Never automatically save:
617 // "autosave": "off",
618 // 2. Save when changing focus away from the Zed window:
619 // "autosave": "on_window_change",
620 // 3. Save when changing focus away from a specific buffer:
621 // "autosave": "on_focus_change",
622 // 4. Save when idle for a certain amount of time:
623 // "autosave": { "after_delay": {"milliseconds": 500} },
624 "autosave": "off",
625 // Maximum number of tabs per pane. Unset for unlimited.
626 "max_tabs": null,
627 // Settings related to the editor's tab bar.
628 "tab_bar": {
629 // Whether or not to show the tab bar in the editor
630 "show": true,
631 // Whether or not to show the navigation history buttons.
632 "show_nav_history_buttons": true,
633 /// Whether or not to show the tab bar buttons.
634 "show_tab_bar_buttons": true
635 },
636 // Settings related to the editor's tabs
637 "tabs": {
638 // Show git status colors in the editor tabs.
639 "git_status": false,
640 // Position of the close button on the editor tabs.
641 "close_position": "right",
642 // Whether to show the file icon for a tab.
643 "file_icons": false,
644 // Whether to always show the close button on tabs.
645 "always_show_close_button": false,
646 // What to do after closing the current tab.
647 //
648 // 1. Activate the tab that was open previously (default)
649 // "history"
650 // 2. Activate the right neighbour tab if present
651 // "neighbour"
652 // 3. Activate the left neighbour tab if present
653 // "left_neighbour"
654 "activate_on_close": "history",
655 /// Which files containing diagnostic errors/warnings to mark in the tabs.
656 /// Diagnostics are only shown when file icons are also active.
657 /// This setting only works when can take the following three values:
658 ///
659 /// 1. Do not mark any files:
660 /// "off"
661 /// 2. Only mark files with errors:
662 /// "errors"
663 /// 3. Mark files with errors and warnings:
664 /// "all"
665 "show_diagnostics": "off"
666 },
667 // Settings related to preview tabs.
668 "preview_tabs": {
669 // Whether preview tabs should be enabled.
670 // Preview tabs allow you to open files in preview mode, where they close automatically
671 // when you switch to another file unless you explicitly pin them.
672 // This is useful for quickly viewing files without cluttering your workspace.
673 "enabled": true,
674 // Whether to open tabs in preview mode when selected from the file finder.
675 "enable_preview_from_file_finder": false,
676 // Whether a preview tab gets replaced when code navigation is used to navigate away from the tab.
677 "enable_preview_from_code_navigation": false
678 },
679 // Settings related to the file finder.
680 "file_finder": {
681 // Whether to show file icons in the file finder.
682 "file_icons": true,
683 // Determines how much space the file finder can take up in relation to the available window width.
684 // There are 5 possible width values:
685 //
686 // 1. Small: This value is essentially a fixed width.
687 // "modal_max_width": "small"
688 // 2. Medium:
689 // "modal_max_width": "medium"
690 // 3. Large:
691 // "modal_max_width": "large"
692 // 4. Extra Large:
693 // "modal_max_width": "xlarge"
694 // 5. Fullscreen: This value removes any horizontal padding, as it consumes the whole viewport width.
695 // "modal_max_width": "full"
696 //
697 // Default: small
698 "modal_max_width": "small"
699 },
700 // Whether or not to remove any trailing whitespace from lines of a buffer
701 // before saving it.
702 "remove_trailing_whitespace_on_save": true,
703 // Whether to start a new line with a comment when a previous line is a comment as well.
704 "extend_comment_on_newline": true,
705 // Whether or not to ensure there's a single newline at the end of a buffer
706 // when saving it.
707 "ensure_final_newline_on_save": true,
708 // Whether or not to perform a buffer format before saving
709 //
710 // Keep in mind, if the autosave with delay is enabled, format_on_save will be ignored
711 "format_on_save": "on",
712 // How to perform a buffer format. This setting can take 4 values:
713 //
714 // 1. Format code using the current language server:
715 // "formatter": "language_server"
716 // 2. Format code using an external command:
717 // "formatter": {
718 // "external": {
719 // "command": "prettier",
720 // "arguments": ["--stdin-filepath", "{buffer_path}"]
721 // }
722 // }
723 // 3. Format code using Zed's Prettier integration:
724 // "formatter": "prettier"
725 // 4. Default. Format files using Zed's Prettier integration (if applicable),
726 // or falling back to formatting via language server:
727 // "formatter": "auto"
728 "formatter": "auto",
729 // How to soft-wrap long lines of text.
730 // Possible values:
731 //
732 // 1. Prefer a single line generally, unless an overly long line is encountered.
733 // "soft_wrap": "none",
734 // "soft_wrap": "prefer_line", // (deprecated, same as "none")
735 // 2. Soft wrap lines that overflow the editor.
736 // "soft_wrap": "editor_width",
737 // 3. Soft wrap lines at the preferred line length.
738 // "soft_wrap": "preferred_line_length",
739 // 4. Soft wrap lines at the preferred line length or the editor width (whichever is smaller).
740 // "soft_wrap": "bounded",
741 "soft_wrap": "none",
742 // The column at which to soft-wrap lines, for buffers where soft-wrap
743 // is enabled.
744 "preferred_line_length": 80,
745 // Whether to indent lines using tab characters, as opposed to multiple
746 // spaces.
747 "hard_tabs": false,
748 // How many columns a tab should occupy.
749 "tab_size": 4,
750 // Control what info is collected by Zed.
751 "telemetry": {
752 // Send debug info like crash reports.
753 "diagnostics": true,
754 // Send anonymized usage data like what languages you're using Zed with.
755 "metrics": true
756 },
757 // Automatically update Zed. This setting may be ignored on Linux if
758 // installed through a package manager.
759 "auto_update": true,
760 // Diagnostics configuration.
761 "diagnostics": {
762 // Whether to show warnings or not by default.
763 "include_warnings": true,
764 // Settings for inline diagnostics
765 "inline": {
766 // Whether to show diagnostics inline or not
767 "enabled": false,
768 // The delay in milliseconds to show inline diagnostics after the
769 // last diagnostic update.
770 "update_debounce_ms": 150,
771 // The amount of padding between the end of the source line and the start
772 // of the inline diagnostic in units of em widths.
773 "padding": 4,
774 // The minimum column to display inline diagnostics. This setting can be
775 // used to horizontally align inline diagnostics at some column. Lines
776 // longer than this value will still push diagnostics further to the right.
777 "min_column": 0,
778 // The minimum severity of the diagnostics to show inline.
779 // Shows all diagnostics when not specified.
780 "max_severity": null
781 }
782 },
783 // Files or globs of files that will be excluded by Zed entirely. They will be skipped during file
784 // scans, file searches, and not be displayed in the project file tree. Takes precedence over `file_scan_inclusions`.
785 "file_scan_exclusions": [
786 "**/.git",
787 "**/.svn",
788 "**/.hg",
789 "**/.jj",
790 "**/CVS",
791 "**/.DS_Store",
792 "**/Thumbs.db",
793 "**/.classpath",
794 "**/.settings"
795 ],
796 // Files or globs of files that will be included by Zed, even when ignored by git. This is useful
797 // for files that are not tracked by git, but are still important to your project. Note that globs
798 // that are overly broad can slow down Zed's file scanning. `file_scan_exclusions` takes
799 // precedence over these inclusions.
800 "file_scan_inclusions": [".env*"],
801 // Git gutter behavior configuration.
802 "git": {
803 // Control whether the git gutter is shown. May take 2 values:
804 // 1. Show the gutter
805 // "git_gutter": "tracked_files"
806 // 2. Hide the gutter
807 // "git_gutter": "hide"
808 "git_gutter": "tracked_files",
809 // Control whether the git blame information is shown inline,
810 // in the currently focused line.
811 "inline_blame": {
812 "enabled": true
813 // Sets a delay after which the inline blame information is shown.
814 // Delay is restarted with every cursor movement.
815 // "delay_ms": 600
816 //
817 // Whether or not to display the git commit summary on the same line.
818 // "show_commit_summary": false
819 //
820 // The minimum column number to show the inline blame information at
821 // "min_column": 0
822 }
823 },
824 // Configuration for how direnv configuration should be loaded. May take 2 values:
825 // 1. Load direnv configuration using `direnv export json` directly.
826 // "load_direnv": "direct"
827 // 2. Load direnv configuration through the shell hook, works for POSIX shells and fish.
828 // "load_direnv": "shell_hook"
829 "load_direnv": "direct",
830 "edit_predictions": {
831 // A list of globs representing files that edit predictions should be disabled for.
832 // There's a sensible default list of globs already included.
833 // Any addition to this list will be merged with the default list.
834 "disabled_globs": [
835 "**/.env*",
836 "**/*.pem",
837 "**/*.key",
838 "**/*.cert",
839 "**/*.crt",
840 "**/.dev.vars",
841 "**/secrets.yml"
842 ],
843 // When to show edit predictions previews in buffer.
844 // This setting takes two possible values:
845 // 1. Display inline when there are no language server completions available.
846 // "mode": "eager_preview"
847 // 2. Display inline when holding modifier key (alt by default).
848 // "mode": "auto"
849 "mode": "eager_preview"
850 },
851 // Settings specific to journaling
852 "journal": {
853 // The path of the directory where journal entries are stored
854 "path": "~",
855 // What format to display the hours in
856 // May take 2 values:
857 // 1. hour12
858 // 2. hour24
859 "hour_format": "hour12"
860 },
861 // Settings specific to the terminal
862 "terminal": {
863 // What shell to use when opening a terminal. May take 3 values:
864 // 1. Use the system's default terminal configuration in /etc/passwd
865 // "shell": "system"
866 // 2. A program:
867 // "shell": {
868 // "program": "sh"
869 // }
870 // 3. A program with arguments:
871 // "shell": {
872 // "with_arguments": {
873 // "program": "/bin/bash",
874 // "args": ["--login"]
875 // }
876 // }
877 "shell": "system",
878 // Where to dock terminals panel. Can be `left`, `right`, `bottom`.
879 "dock": "bottom",
880 // Default width when the terminal is docked to the left or right.
881 "default_width": 640,
882 // Default height when the terminal is docked to the bottom.
883 "default_height": 320,
884 // What working directory to use when launching the terminal.
885 // May take 4 values:
886 // 1. Use the current file's project directory. Will Fallback to the
887 // first project directory strategy if unsuccessful
888 // "working_directory": "current_project_directory"
889 // 2. Use the first project in this workspace's directory
890 // "working_directory": "first_project_directory"
891 // 3. Always use this platform's home directory (if we can find it)
892 // "working_directory": "always_home"
893 // 4. Always use a specific directory. This value will be shell expanded.
894 // If this path is not a valid directory the terminal will default to
895 // this platform's home directory (if we can find it)
896 // "working_directory": {
897 // "always": {
898 // "directory": "~/zed/projects/"
899 // }
900 // }
901 "working_directory": "current_project_directory",
902 // Set the cursor blinking behavior in the terminal.
903 // May take 3 values:
904 // 1. Never blink the cursor, ignoring the terminal mode
905 // "blinking": "off",
906 // 2. Default the cursor blink to off, but allow the terminal to
907 // set blinking
908 // "blinking": "terminal_controlled",
909 // 3. Always blink the cursor, ignoring the terminal mode
910 // "blinking": "on",
911 "blinking": "terminal_controlled",
912 // Default cursor shape for the terminal.
913 // 1. A block that surrounds the following character
914 // "block"
915 // 2. A vertical bar
916 // "bar"
917 // 3. An underline / underscore that runs along the following character
918 // "underline"
919 // 4. A box drawn around the following character
920 // "hollow"
921 //
922 // Default: not set, defaults to "block"
923 "cursor_shape": null,
924 // Set whether Alternate Scroll mode (code: ?1007) is active by default.
925 // Alternate Scroll mode converts mouse scroll events into up / down key
926 // presses when in the alternate screen (e.g. when running applications
927 // like vim or less). The terminal can still set and unset this mode.
928 // May take 2 values:
929 // 1. Default alternate scroll mode to on
930 // "alternate_scroll": "on",
931 // 2. Default alternate scroll mode to off
932 // "alternate_scroll": "off",
933 "alternate_scroll": "off",
934 // Set whether the option key behaves as the meta key.
935 // May take 2 values:
936 // 1. Rely on default platform handling of option key, on macOS
937 // this means generating certain unicode characters
938 // "option_as_meta": false,
939 // 2. Make the option keys behave as a 'meta' key, e.g. for emacs
940 // "option_as_meta": true,
941 "option_as_meta": false,
942 // Whether or not selecting text in the terminal will automatically
943 // copy to the system clipboard.
944 "copy_on_select": false,
945 // Whether to show the terminal button in the status bar
946 "button": true,
947 // Any key-value pairs added to this list will be added to the terminal's
948 // environment. Use `:` to separate multiple values.
949 "env": {
950 // "KEY": "value1:value2"
951 },
952 // Set the terminal's line height.
953 // May take 3 values:
954 // 1. Use a line height that's comfortable for reading, 1.618
955 // "line_height": "comfortable"
956 // 2. Use a standard line height, 1.3. This option is useful for TUIs,
957 // particularly if they use box characters
958 // "line_height": "standard",
959 // 3. Use a custom line height.
960 // "line_height": {
961 // "custom": 2
962 // },
963 "line_height": "comfortable",
964 // Activate the python virtual environment, if one is found, in the
965 // terminal's working directory (as resolved by the working_directory
966 // setting). Set this to "off" to disable this behavior.
967 "detect_venv": {
968 "on": {
969 // Default directories to search for virtual environments, relative
970 // to the current working directory. We recommend overriding this
971 // in your project's settings, rather than globally.
972 "directories": [".env", "env", ".venv", "venv"],
973 // Can also be `csh`, `fish`, `nushell` and `power_shell`
974 "activate_script": "default"
975 }
976 },
977 "toolbar": {
978 // Whether to display the terminal title in its toolbar's breadcrumbs.
979 // Only shown if the terminal title is not empty.
980 //
981 // The shell running in the terminal needs to be configured to emit the title.
982 // Example: `echo -e "\e]2;New Title\007";`
983 "breadcrumbs": true
984 },
985 /// Scrollbar-related settings
986 "scrollbar": {
987 /// When to show the scrollbar in the terminal.
988 /// This setting can take five values:
989 ///
990 /// 1. null (default): Inherit editor settings
991 /// 2. Show the scrollbar if there's important information or
992 /// follow the system's configured behavior (default):
993 /// "auto"
994 /// 3. Match the system's configured behavior:
995 /// "system"
996 /// 4. Always show the scrollbar:
997 /// "always"
998 /// 5. Never show the scrollbar:
999 /// "never"
1000 "show": null
1001 }
1002 // Set the terminal's font size. If this option is not included,
1003 // the terminal will default to matching the buffer's font size.
1004 // "font_size": 15,
1005 // Set the terminal's font family. If this option is not included,
1006 // the terminal will default to matching the buffer's font family.
1007 // "font_family": "Zed Plex Mono",
1008 // Set the terminal's font fallbacks. If this option is not included,
1009 // the terminal will default to matching the buffer's font fallbacks.
1010 // This will be merged with the platform's default font fallbacks
1011 // "font_fallbacks": ["FiraCode Nerd Fonts"],
1012 // Sets the maximum number of lines in the terminal's scrollback buffer.
1013 // Default: 10_000, maximum: 100_000 (all bigger values set will be treated as 100_000), 0 disables the scrolling.
1014 // Existing terminals will not pick up this change until they are recreated.
1015 // "max_scroll_history_lines": 10000,
1016 },
1017 "code_actions_on_format": {},
1018 /// Settings related to running tasks.
1019 "tasks": {
1020 "variables": {}
1021 },
1022 // An object whose keys are language names, and whose values
1023 // are arrays of filenames or extensions of files that should
1024 // use those languages.
1025 //
1026 // For example, to treat files like `foo.notjs` as JavaScript,
1027 // and `Embargo.lock` as TOML:
1028 //
1029 // {
1030 // "JavaScript": ["notjs"],
1031 // "TOML": ["Embargo.lock"]
1032 // }
1033 //
1034 "file_types": {
1035 "Plain Text": ["txt"],
1036 "JSONC": ["**/.zed/**/*.json", "**/zed/**/*.json", "**/Zed/**/*.json", "**/.vscode/**/*.json"],
1037 "Shell Script": [".env.*"]
1038 },
1039 /// By default use a recent system version of node, or install our own.
1040 /// You can override this to use a version of node that is not in $PATH with:
1041 /// {
1042 /// "node": {
1043 /// "path": "/path/to/node"
1044 /// "npm_path": "/path/to/npm" (defaults to node_path/../npm)
1045 /// }
1046 /// }
1047 /// or to ensure Zed always downloads and installs an isolated version of node:
1048 /// {
1049 /// "node": {
1050 /// "ignore_system_version": true,
1051 /// }
1052 /// NOTE: changing this setting currently requires restarting Zed.
1053 "node": {},
1054 // The extensions that Zed should automatically install on startup.
1055 //
1056 // If you don't want any of these extensions, add this field to your settings
1057 // and change the value to `false`.
1058 "auto_install_extensions": {
1059 "html": true
1060 },
1061 // Different settings for specific languages.
1062 "languages": {
1063 "Astro": {
1064 "language_servers": ["astro-language-server", "..."],
1065 "prettier": {
1066 "allowed": true,
1067 "plugins": ["prettier-plugin-astro"]
1068 }
1069 },
1070 "Blade": {
1071 "prettier": {
1072 "allowed": true
1073 }
1074 },
1075 "C": {
1076 "format_on_save": "off",
1077 "use_on_type_format": false,
1078 "prettier": {
1079 "allowed": false
1080 }
1081 },
1082 "C++": {
1083 "format_on_save": "off",
1084 "use_on_type_format": false,
1085 "prettier": {
1086 "allowed": false
1087 }
1088 },
1089 "CSS": {
1090 "prettier": {
1091 "allowed": true
1092 }
1093 },
1094 "Dart": {
1095 "tab_size": 2
1096 },
1097 "Diff": {
1098 "remove_trailing_whitespace_on_save": false,
1099 "ensure_final_newline_on_save": false
1100 },
1101 "Elixir": {
1102 "language_servers": ["elixir-ls", "!next-ls", "!lexical", "..."]
1103 },
1104 "Erlang": {
1105 "language_servers": ["erlang-ls", "!elp", "..."]
1106 },
1107 "Git Commit": {
1108 "allow_rewrap": "anywhere"
1109 },
1110 "Go": {
1111 "code_actions_on_format": {
1112 "source.organizeImports": true
1113 }
1114 },
1115 "GraphQL": {
1116 "prettier": {
1117 "allowed": true
1118 }
1119 },
1120 "HEEX": {
1121 "language_servers": ["elixir-ls", "!next-ls", "!lexical", "..."]
1122 },
1123 "HTML": {
1124 "prettier": {
1125 "allowed": true
1126 }
1127 },
1128 "Java": {
1129 "prettier": {
1130 "allowed": true,
1131 "plugins": ["prettier-plugin-java"]
1132 }
1133 },
1134 "JavaScript": {
1135 "language_servers": ["!typescript-language-server", "vtsls", "..."],
1136 "prettier": {
1137 "allowed": true
1138 }
1139 },
1140 "JSON": {
1141 "prettier": {
1142 "allowed": true
1143 }
1144 },
1145 "JSONC": {
1146 "prettier": {
1147 "allowed": true
1148 }
1149 },
1150 "Markdown": {
1151 "format_on_save": "off",
1152 "use_on_type_format": false,
1153 "allow_rewrap": "anywhere",
1154 "prettier": {
1155 "allowed": true
1156 }
1157 },
1158 "PHP": {
1159 "language_servers": ["phpactor", "!intelephense", "..."],
1160 "prettier": {
1161 "allowed": true,
1162 "plugins": ["@prettier/plugin-php"],
1163 "parser": "php"
1164 }
1165 },
1166 "Plain Text": {
1167 "allow_rewrap": "anywhere"
1168 },
1169 "Ruby": {
1170 "language_servers": ["solargraph", "!ruby-lsp", "!rubocop", "..."]
1171 },
1172 "SCSS": {
1173 "prettier": {
1174 "allowed": true
1175 }
1176 },
1177 "SQL": {
1178 "prettier": {
1179 "allowed": true,
1180 "plugins": ["prettier-plugin-sql"]
1181 }
1182 },
1183 "Starlark": {
1184 "language_servers": ["starpls", "!buck2-lsp", "..."]
1185 },
1186 "Svelte": {
1187 "language_servers": ["svelte-language-server", "..."],
1188 "prettier": {
1189 "allowed": true,
1190 "plugins": ["prettier-plugin-svelte"]
1191 }
1192 },
1193 "TSX": {
1194 "language_servers": ["!typescript-language-server", "vtsls", "..."],
1195 "prettier": {
1196 "allowed": true
1197 }
1198 },
1199 "Twig": {
1200 "prettier": {
1201 "allowed": true
1202 }
1203 },
1204 "TypeScript": {
1205 "language_servers": ["!typescript-language-server", "vtsls", "..."],
1206 "prettier": {
1207 "allowed": true
1208 }
1209 },
1210 "Vue.js": {
1211 "language_servers": ["vue-language-server", "..."],
1212 "prettier": {
1213 "allowed": true
1214 }
1215 },
1216 "XML": {
1217 "prettier": {
1218 "allowed": true,
1219 "plugins": ["@prettier/plugin-xml"]
1220 }
1221 },
1222 "YAML": {
1223 "prettier": {
1224 "allowed": true
1225 }
1226 },
1227 "Zig": {
1228 "language_servers": ["zls", "..."]
1229 }
1230 },
1231 // Different settings for specific language models.
1232 "language_models": {
1233 "anthropic": {
1234 "version": "1",
1235 "api_url": "https://api.anthropic.com"
1236 },
1237 "google": {
1238 "api_url": "https://generativelanguage.googleapis.com"
1239 },
1240 "ollama": {
1241 "api_url": "http://localhost:11434"
1242 },
1243 "openai": {
1244 "version": "1",
1245 "api_url": "https://api.openai.com/v1"
1246 },
1247 "lmstudio": {
1248 "api_url": "http://localhost:1234/api/v0"
1249 },
1250 "deepseek": {
1251 "api_url": "https://api.deepseek.com"
1252 },
1253 "mistral": {
1254 "api_url": "https://api.mistral.ai/v1"
1255 }
1256 },
1257 // Zed's Prettier integration settings.
1258 // Allows to enable/disable formatting with Prettier
1259 // and configure default Prettier, used when no project-level Prettier installation is found.
1260 "prettier": {
1261 // // Whether to consider prettier formatter or not when attempting to format a file.
1262 // "allowed": false,
1263 //
1264 // // Use regular Prettier json configuration.
1265 // // If Prettier is allowed, Zed will use this for its Prettier instance for any applicable file, if
1266 // // the project has no other Prettier installed.
1267 // "plugins": [],
1268 //
1269 // // Use regular Prettier json configuration.
1270 // // If Prettier is allowed, Zed will use this for its Prettier instance for any applicable file, if
1271 // // the project has no other Prettier installed.
1272 // "trailingComma": "es5",
1273 // "tabWidth": 4,
1274 // "semi": false,
1275 // "singleQuote": true
1276 },
1277 // LSP Specific settings.
1278 "lsp": {
1279 // Specify the LSP name as a key here.
1280 // "rust-analyzer": {
1281 // // These initialization options are merged into Zed's defaults
1282 // "initialization_options": {
1283 // "check": {
1284 // "command": "clippy" // rust-analyzer.check.command (default: "check")
1285 // }
1286 // }
1287 // }
1288 },
1289 // Jupyter settings
1290 "jupyter": {
1291 "enabled": true
1292 // Specify the language name as the key and the kernel name as the value.
1293 // "kernel_selections": {
1294 // "python": "conda-base"
1295 // "typescript": "deno"
1296 // }
1297 },
1298 // Vim settings
1299 "vim": {
1300 "toggle_relative_line_numbers": false,
1301 "use_system_clipboard": "always",
1302 "use_multiline_find": false,
1303 "use_smartcase_find": false,
1304 "highlight_on_yank_duration": 200,
1305 "custom_digraphs": {}
1306 },
1307 // The server to connect to. If the environment variable
1308 // ZED_SERVER_URL is set, it will override this setting.
1309 "server_url": "https://zed.dev",
1310 // Settings overrides to use when using Zed Preview.
1311 // Mostly useful for developers who are managing multiple instances of Zed.
1312 "preview": {
1313 // "theme": "Andromeda"
1314 },
1315 // Settings overrides to use when using Zed Nightly.
1316 // Mostly useful for developers who are managing multiple instances of Zed.
1317 "nightly": {
1318 // "theme": "Andromeda"
1319 },
1320 // Settings overrides to use when using Zed Stable.
1321 // Mostly useful for developers who are managing multiple instances of Zed.
1322 "stable": {
1323 // "theme": "Andromeda"
1324 },
1325 // Settings overrides to use when using Zed Dev.
1326 // Mostly useful for developers who are managing multiple instances of Zed.
1327 "dev": {
1328 // "theme": "Andromeda"
1329 },
1330 // Task-related settings.
1331 "task": {
1332 // Whether to show task status indicator in the status bar. Default: true
1333 "show_status_indicator": true
1334 },
1335 // Whether to show full labels in line indicator or short ones
1336 //
1337 // Values:
1338 // - `short`: "2 s, 15 l, 32 c"
1339 // - `long`: "2 selections, 15 lines, 32 characters"
1340 // Default: long
1341 "line_indicator_format": "long",
1342 // Set a proxy to use. The proxy protocol is specified by the URI scheme.
1343 //
1344 // Supported URI scheme: `http`, `https`, `socks4`, `socks4a`, `socks5`,
1345 // `socks5h`. `http` will be used when no scheme is specified.
1346 //
1347 // By default no proxy will be used, or Zed will try get proxy settings from
1348 // environment variables.
1349 //
1350 // Examples:
1351 // - "proxy": "socks5h://localhost:10808"
1352 // - "proxy": "http://127.0.0.1:10809"
1353 "proxy": null,
1354 // Set to configure aliases for the command palette.
1355 // When typing a query which is a key of this object, the value will be used instead.
1356 //
1357 // Examples:
1358 // {
1359 // "W": "workspace::Save"
1360 // }
1361 "command_aliases": {},
1362 // Whether to show user picture in titlebar.
1363 "show_user_picture": true,
1364 // ssh_connections is an array of ssh connections.
1365 // You can configure these from `project: Open Remote` in the command palette.
1366 // Zed's ssh support will pull configuration from your ~/.ssh too.
1367 // Examples:
1368 // [
1369 // {
1370 // "host": "example-box",
1371 // // "port": 22, "username": "test", "args": ["-i", "/home/user/.ssh/id_rsa"]
1372 // "projects": [
1373 // {
1374 // "paths": ["/home/user/code/zed"]
1375 // }
1376 // ]
1377 // }
1378 // ]
1379 "ssh_connections": [],
1380 // Configures context servers for use in the Assistant.
1381 "context_servers": {}
1382}