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