default.json

   1{
   2  "$schema": "zed://schemas/settings",
   3  /// The displayed name of this project. If not set or null, the root directory name
   4  /// will be displayed.
   5  "project_name": null,
   6  // The name of the Zed theme to use for the UI.
   7  //
   8  // `mode` is one of:
   9  // - "system": Use the theme that corresponds to the system's appearance
  10  // - "light": Use the theme indicated by the "light" field
  11  // - "dark": Use the theme indicated by the "dark" field
  12  "theme": {
  13    "mode": "system",
  14    "light": "One Light",
  15    "dark": "One Dark",
  16  },
  17  "icon_theme": "Zed (Default)",
  18  // The name of a base set of key bindings to use.
  19  // This setting can take six values, each named after another
  20  // text editor:
  21  //
  22  // 1. "VSCode"
  23  // 2. "Atom"
  24  // 3. "JetBrains"
  25  // 4. "None"
  26  // 5. "SublimeText"
  27  // 6. "TextMate"
  28  "base_keymap": "VSCode",
  29  // The name of a font to use for rendering text in the editor
  30  // ".ZedMono" currently aliases to Lilex
  31  // but this may change in the future.
  32  "buffer_font_family": ".ZedMono",
  33  // Set the buffer text's font fallbacks, this will be merged with
  34  // the platform's default fallbacks.
  35  "buffer_font_fallbacks": null,
  36  // The OpenType features to enable for text in the editor.
  37  "buffer_font_features": {
  38    // Disable ligatures:
  39    // "calt": false
  40  },
  41  // The default font size for text in the editor
  42  "buffer_font_size": 15,
  43  // The weight of the editor font in standard CSS units from 100 to 900.
  44  "buffer_font_weight": 400,
  45  // Set the buffer's line height.
  46  // May take 3 values:
  47  //  1. Use a line height that's comfortable for reading (1.618)
  48  //         "buffer_line_height": "comfortable"
  49  //  2. Use a standard line height, (1.3)
  50  //         "buffer_line_height": "standard",
  51  //  3. Use a custom line height
  52  //         "buffer_line_height": {
  53  //           "custom": 2
  54  //         },
  55  "buffer_line_height": "comfortable",
  56  // The name of a font to use for rendering text in the UI
  57  // You can set this to ".SystemUIFont" to use the system font
  58  // ".ZedSans" currently aliases to "IBM Plex Sans", but this may
  59  // change in the future
  60  "ui_font_family": ".ZedSans",
  61  // Set the UI's font fallbacks, this will be merged with the platform's
  62  // default font fallbacks.
  63  "ui_font_fallbacks": null,
  64  // The OpenType features to enable for text in the UI
  65  "ui_font_features": {
  66    // Disable ligatures:
  67    "calt": false,
  68  },
  69  // The weight of the UI font in standard CSS units from 100 to 900.
  70  "ui_font_weight": 400,
  71  // The default font size for text in the UI
  72  "ui_font_size": 16,
  73  // The default font size for agent responses in the agent panel. Falls back to the UI font size if unset.
  74  "agent_ui_font_size": null,
  75  // The default font size for user messages in the agent panel.
  76  "agent_buffer_font_size": 12,
  77  // How much to fade out unused code.
  78  "unnecessary_code_fade": 0.3,
  79  // Active pane styling settings.
  80  "active_pane_modifiers": {
  81    // Inset border size of the active pane, in pixels.
  82    "border_size": 0.0,
  83    // Opacity of the inactive panes. 0 means transparent, 1 means opaque.
  84    // Values are clamped to the [0.0, 1.0] range.
  85    "inactive_opacity": 1.0,
  86  },
  87  // Layout mode of the bottom dock. Defaults to "contained"
  88  //   choices: contained, full, left_aligned, right_aligned
  89  "bottom_dock_layout": "contained",
  90  // The direction that you want to split panes horizontally. Defaults to "down"
  91  "pane_split_direction_horizontal": "down",
  92  // The direction that you want to split panes vertically. Defaults to "right"
  93  "pane_split_direction_vertical": "right",
  94  // Centered layout related settings.
  95  "centered_layout": {
  96    // The relative width of the left padding of the central pane from the
  97    // workspace when the centered layout is used.
  98    "left_padding": 0.2,
  99    // The relative width of the right padding of the central pane from the
 100    // workspace when the centered layout is used.
 101    "right_padding": 0.2,
 102  },
 103  // Image viewer settings
 104  "image_viewer": {
 105    // The unit for image file sizes: "binary" (KiB, MiB) or decimal (KB, MB)
 106    "unit": "binary",
 107  },
 108  // Determines the modifier to be used to add multiple cursors with the mouse. The open hover link mouse gestures will adapt such that it do not conflict with the multicursor modifier.
 109  //
 110  // 1. Maps to `Alt` on Linux and Windows and to `Option` on MacOS:
 111  //    "alt"
 112  // 2. Maps `Control` on Linux and Windows and to `Command` on MacOS:
 113  //    "cmd_or_ctrl" (alias: "cmd", "ctrl")
 114  "multi_cursor_modifier": "alt",
 115  // Whether to enable vim modes and key bindings.
 116  "vim_mode": false,
 117  // Whether to enable helix mode and key bindings.
 118  // Enabling this mode will automatically enable vim mode.
 119  "helix_mode": false,
 120  // Whether to show the informational hover box when moving the mouse
 121  // over symbols in the editor.
 122  "hover_popover_enabled": true,
 123  // Time to wait in milliseconds before showing the informational hover box.
 124  // This delay also applies to auto signature help when `auto_signature_help` is enabled.
 125  "hover_popover_delay": 300,
 126  // Whether to confirm before quitting Zed.
 127  "confirm_quit": false,
 128  // Whether to restore last closed project when fresh Zed instance is opened
 129  // May take 3 values:
 130  //  1. All workspaces open during last session
 131  //         "restore_on_startup": "last_session"
 132  //  2. The workspace opened
 133  //         "restore_on_startup": "last_workspace",
 134  //  3. Do not restore previous workspaces
 135  //         "restore_on_startup": "none",
 136  "restore_on_startup": "last_session",
 137  // Whether to attempt to restore previous file's state when opening it again.
 138  // The state is stored per pane.
 139  // When disabled, defaults are applied instead of the state restoration.
 140  //
 141  // 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.
 142  // When disabled, a single selection in the very beginning of the file, zero scroll position and no folds state is used as a default.
 143  //
 144  // Default: true
 145  "restore_on_file_reopen": true,
 146  // Whether to automatically close files that have been deleted on disk.
 147  "close_on_file_delete": false,
 148  // Whether toggling a panel (e.g. with its keyboard shortcut) also closes
 149  // the panel when it is already focused, instead of just moving focus back
 150  // to the editor.
 151  "close_panel_on_toggle": false,
 152  // Relative size of the drop target in the editor that will open dropped file as a split pane (0-0.5)
 153  // E.g. 0.25 == If you drop onto the top/bottom quarter of the pane a new vertical split will be used
 154  //              If you drop onto the left/right quarter of the pane a new horizontal split will be used
 155  "drop_target_size": 0.2,
 156  // Whether the window should be closed when using 'close active item' on a window with no tabs.
 157  // May take 3 values:
 158  //  1. Use the current platform's convention
 159  //         "when_closing_with_no_tabs": "platform_default"
 160  //  2. Always close the window:
 161  //         "when_closing_with_no_tabs": "close_window",
 162  //  3. Never close the window
 163  //         "when_closing_with_no_tabs": "keep_window_open",
 164  "when_closing_with_no_tabs": "platform_default",
 165  // What to do when the last window is closed.
 166  // May take 2 values:
 167  //  1. Use the current platform's convention
 168  //         "on_last_window_closed": "platform_default"
 169  //  2. Always quit the application
 170  //         "on_last_window_closed": "quit_app",
 171  "on_last_window_closed": "platform_default",
 172  // The text rendering mode to use.
 173  // May take 3 values:
 174  //  1. Use platform default behavior:
 175  //         "text_rendering_mode": "platform_default"
 176  //  2. Use subpixel (ClearType-style) text rendering:
 177  //         "text_rendering_mode": "subpixel"
 178  //  3. Use grayscale text rendering:
 179  //         "text_rendering_mode": "grayscale"
 180  "text_rendering_mode": "platform_default",
 181  // Whether to show padding for zoomed panels.
 182  // When enabled, zoomed center panels (e.g. code editor) will have padding all around,
 183  // while zoomed bottom/left/right panels will have padding to the top/right/left (respectively).
 184  //
 185  // Default: true
 186  "zoomed_padding": true,
 187  // What draws Zed's window decorations (titlebar):
 188  // 1. Client application (Zed) draws its own window decorations
 189  //    "client"
 190  // 2. Display server draws the window decorations. Not supported by GNOME Wayland.
 191  //    "server"
 192  //
 193  // This requires restarting Zed for changes to take effect.
 194  //
 195  // Default: "client"
 196  "window_decorations": "client",
 197  // Whether to use the system provided dialogs for Open and Save As.
 198  // When set to false, Zed will use the built-in keyboard-first pickers.
 199  "use_system_path_prompts": true,
 200  // Whether to use the system provided dialogs for prompts, such as confirmation
 201  // prompts.
 202  // When set to false, Zed will use its built-in prompts. Note that on Linux,
 203  // this option is ignored and Zed will always use the built-in prompts.
 204  "use_system_prompts": true,
 205  // Whether the cursor blinks in the editor.
 206  "cursor_blink": true,
 207  // Cursor shape for the default editor.
 208  //  1. A vertical bar
 209  //     "bar"
 210  //  2. A block that surrounds the following character
 211  //     "block"
 212  //  3. An underline / underscore that runs along the following character
 213  //     "underline"
 214  //  4. A box drawn around the following character
 215  //     "hollow"
 216  //
 217  // Default: "bar"
 218  "cursor_shape": "bar",
 219  // Determines when the mouse cursor should be hidden in an editor or input box.
 220  //
 221  // 1. Never hide the mouse cursor:
 222  //    "never"
 223  // 2. Hide only when typing:
 224  //    "on_typing"
 225  // 3. Hide on both typing and cursor movement:
 226  //    "on_typing_and_movement"
 227  "hide_mouse": "on_typing_and_movement",
 228  // Determines whether the focused panel follows the mouse location.
 229  "focus_follows_mouse": {
 230    "enabled": false,
 231    "debounce_ms": 250,
 232  },
 233  // Determines how snippets are sorted relative to other completion items.
 234  //
 235  // 1. Place snippets at the top of the completion list:
 236  //    "top"
 237  // 2. Place snippets normally without any preference:
 238  //    "inline"
 239  // 3. Place snippets at the bottom of the completion list:
 240  //    "bottom"
 241  // 4. Do not show snippets in the completion list:
 242  //    "none"
 243  "snippet_sort_order": "inline",
 244  // How to highlight the current line in the editor.
 245  //
 246  // 1. Don't highlight the current line:
 247  //    "none"
 248  // 2. Highlight the gutter area:
 249  //    "gutter"
 250  // 3. Highlight the editor area:
 251  //    "line"
 252  // 4. Highlight the full line (default):
 253  //    "all"
 254  "current_line_highlight": "all",
 255  // Whether to highlight all occurrences of the selected text in an editor.
 256  "selection_highlight": true,
 257  // Whether the text selection should have rounded corners.
 258  "rounded_selection": true,
 259  // The debounce delay before querying highlights from the language
 260  // server based on the current cursor location.
 261  "lsp_highlight_debounce": 75,
 262  // The minimum APCA perceptual contrast between foreground and background colors.
 263  // APCA (Accessible Perceptual Contrast Algorithm) is more accurate than WCAG 2.x,
 264  // especially for dark mode. Values range from 0 to 106.
 265  //
 266  // Based on APCA Readability Criterion (ARC) Bronze Simple Mode:
 267  // https://readtech.org/ARC/tests/bronze-simple-mode/
 268  // - 0: No contrast adjustment
 269  // - 45: Minimum for large fluent text (36px+)
 270  // - 60: Minimum for other content text
 271  // - 75: Minimum for body text
 272  // - 90: Preferred for body text
 273  //
 274  // This only affects text drawn over highlight backgrounds in the editor.
 275  "minimum_contrast_for_highlights": 45,
 276  // Whether to pop the completions menu while typing in an editor without
 277  // explicitly requesting it.
 278  "show_completions_on_input": true,
 279  // Whether to display inline and alongside documentation for items in the
 280  // completions menu
 281  "show_completion_documentation": true,
 282  // Whether to colorize brackets in the editor.
 283  // (also known as "rainbow brackets")
 284  //
 285  // The colors that are used for different indentation levels are defined in the theme (theme key: `accents`).
 286  // They can be customized by using theme overrides.
 287  "colorize_brackets": false,
 288  // When to show the scrollbar in the completion menu.
 289  // This setting can take four values:
 290  //
 291  // 1. Show the scrollbar if there's important information or
 292  //    follow the system's configured behavior
 293  //   "auto"
 294  // 2. Match the system's configured behavior:
 295  //    "system"
 296  // 3. Always show the scrollbar:
 297  //    "always"
 298  // 4. Never show the scrollbar:
 299  //    "never" (default)
 300  "completion_menu_scrollbar": "never",
 301  // Whether to align detail text in code completions context menus left or right.
 302  "completion_detail_alignment": "left",
 303  // How to display diffs in the editor.
 304  //
 305  // Default: split
 306  "diff_view_style": "split",
 307  // The minimum width (in em-widths) at which the split diff view is used.
 308  // When the editor is narrower than this, the diff view automatically
 309  // switches to unified mode and switches back when the editor is wide
 310  // enough. Set to 0 to disable automatic switching.
 311  //
 312  // Default: 100
 313  "minimum_split_diff_width": 100,
 314  // Show method signatures in the editor, when inside parentheses.
 315  "auto_signature_help": false,
 316  // Whether to show the signature help after completion or a bracket pair inserted.
 317  // If `auto_signature_help` is enabled, this setting will be treated as enabled also.
 318  "show_signature_help_after_edits": false,
 319  // Whether to show code action button at start of buffer line.
 320  "inline_code_actions": true,
 321  // Whether to allow drag and drop text selection in buffer.
 322  "drag_and_drop_selection": {
 323    // When true, enables drag and drop text selection in buffer.
 324    "enabled": true,
 325    // The delay in milliseconds that must elapse before drag and drop is allowed. Otherwise, a new text selection is created.
 326    "delay": 300,
 327  },
 328  // What to do when go to definition yields no results.
 329  //
 330  // 1. Do nothing: `none`
 331  // 2. Find references for the same symbol: `find_all_references` (default)
 332  "go_to_definition_fallback": "find_all_references",
 333  // Which level to use to filter out diagnostics displayed in the editor.
 334  //
 335  // Affects the editor rendering only, and does not interrupt
 336  // the functionality of diagnostics fetching and project diagnostics editor.
 337  // Which files containing diagnostic errors/warnings to mark in the tabs.
 338  // Diagnostics are only shown when file icons are also active.
 339  // This setting only works when can take the following three values:
 340  //
 341  // Which diagnostic indicators to show in the scrollbar, their level should be more or equal to the specified severity level.
 342  // Possible values:
 343  //  - "off" — no diagnostics are allowed
 344  //  - "error"
 345  //  - "warning"
 346  //  - "info"
 347  //  - "hint"
 348  //  - "all" — allow all diagnostics (default)
 349  "diagnostics_max_severity": "all",
 350  // Whether to show wrap guides (vertical rulers) in the editor.
 351  // Setting this to true will show a guide at the 'preferred_line_length' value
 352  // if 'soft_wrap' is set to 'preferred_line_length', and will show any
 353  // additional guides as specified by the 'wrap_guides' setting.
 354  "show_wrap_guides": true,
 355  // Character counts at which to show wrap guides in the editor.
 356  "wrap_guides": [],
 357  // Hide the values of in variables from visual display in private files
 358  "redact_private_values": false,
 359  // The default number of lines to expand excerpts in the multibuffer by.
 360  "expand_excerpt_lines": 5,
 361  // The default number of context lines shown in multibuffer excerpts.
 362  "excerpt_context_lines": 2,
 363  // Globs to match against file paths to determine if a file is private.
 364  "private_files": ["**/.env*", "**/*.pem", "**/*.key", "**/*.cert", "**/*.crt", "**/secrets.yml"],
 365  // Whether to use additional LSP queries to format (and amend) the code after
 366  // every "trigger" symbol input, defined by LSP server capabilities.
 367  "use_on_type_format": true,
 368  // Whether to automatically add matching closing characters when typing
 369  // opening parenthesis, bracket, brace, single or double quote characters.
 370  // For example, when you type '(', Zed will add a closing ) at the correct position.
 371  "use_autoclose": true,
 372  // Whether to automatically surround selected text when typing opening parenthesis,
 373  // bracket, brace, single or double quote characters.
 374  // For example, when you select text and type '(', Zed will surround the text with ().
 375  "use_auto_surround": true,
 376  // Controls automatic indentation behavior when typing.
 377  // - "syntax_aware": Adjusts indentation based on syntax context (default)
 378  // - "preserve_indent": Preserves current line's indentation on new lines
 379  // - "none": No automatic indentation
 380  "auto_indent": "syntax_aware",
 381  // Whether indentation of pasted content should be adjusted based on the context.
 382  "auto_indent_on_paste": true,
 383  // Controls how the editor handles the autoclosed characters.
 384  // When set to `false`(default), skipping over and auto-removing of the closing characters
 385  // happen only for auto-inserted characters.
 386  // Otherwise(when `true`), the closing characters are always skipped over and auto-removed
 387  // no matter how they were inserted.
 388  "always_treat_brackets_as_autoclosed": false,
 389  // Controls where the `editor::Rewrap` action is allowed in the current language scope.
 390  //
 391  // This setting can take three values:
 392  //
 393  // 1. Only allow rewrapping in comments:
 394  //    "in_comments"
 395  // 2. Only allow rewrapping in the current selection(s):
 396  //    "in_selections"
 397  // 3. Allow rewrapping anywhere:
 398  //    "anywhere"
 399  //
 400  // When using values other than `in_comments`, it is possible for the rewrapping to produce code
 401  // that is syntactically invalid. Keep this in mind when selecting which behavior you would like
 402  // to use.
 403  //
 404  // Note: This setting has no effect in Vim mode, as rewrap is already allowed everywhere.
 405  "allow_rewrap": "in_comments",
 406  // Controls whether edit predictions are shown immediately (true)
 407  // or manually by triggering `editor::ShowEditPrediction` (false).
 408  "show_edit_predictions": true,
 409  // Controls whether edit predictions are shown in a given language scope.
 410  // Example: ["string", "comment"]
 411  "edit_predictions_disabled_in": [],
 412  // Whether to show tabs and spaces in the editor.
 413  // This setting can take four values:
 414  //
 415  // 1. Draw tabs and spaces only for the selected text (default):
 416  //    "selection"
 417  // 2. Do not draw any tabs or spaces:
 418  //    "none"
 419  // 3. Draw all invisible symbols:
 420  //    "all"
 421  // 4. Draw whitespaces at boundaries only:
 422  //    "boundary"
 423  // 5. Draw whitespaces only after non-whitespace characters:
 424  //    "trailing"
 425  // For a whitespace to be on a boundary, any of the following conditions need to be met:
 426  // - It is a tab
 427  // - It is adjacent to an edge (start or end)
 428  // - It is adjacent to a whitespace (left or right)
 429  "show_whitespaces": "selection",
 430  // Visible characters used to render whitespace when show_whitespaces is enabled.
 431  "whitespace_map": {
 432    "space": "•",
 433    "tab": "→",
 434  },
 435  // Settings related to calls in Zed
 436  "calls": {
 437    // Join calls with the microphone live by default
 438    "mute_on_join": false,
 439    // Share your project when you are the first to join a channel
 440    "share_on_join": false,
 441  },
 442  // Toolbar related settings
 443  "toolbar": {
 444    // Whether to show breadcrumbs.
 445    "breadcrumbs": true,
 446    // Whether to show quick action buttons.
 447    "quick_actions": true,
 448    // Whether to show the Selections menu in the editor toolbar.
 449    "selections_menu": true,
 450    // Whether to show agent review buttons in the editor toolbar.
 451    "agent_review": true,
 452    // Whether to show code action buttons in the editor toolbar.
 453    "code_actions": false,
 454  },
 455  // Whether to allow windows to tab together based on the user’s tabbing preference (macOS only).
 456  "use_system_window_tabs": false,
 457  // Titlebar related settings
 458  "title_bar": {
 459    // Whether to show the branch icon beside branch switcher in the titlebar.
 460    "show_branch_icon": false,
 461    // Whether to show the branch name button in the titlebar.
 462    "show_branch_name": true,
 463    // Whether to show the project host and name in the titlebar.
 464    "show_project_items": true,
 465    // Whether to show onboarding banners in the titlebar.
 466    "show_onboarding_banner": true,
 467    // Whether to show user picture in the titlebar.
 468    "show_user_picture": true,
 469    // Whether to show the user menu in the titlebar.
 470    "show_user_menu": true,
 471    // Whether to show the sign in button in the titlebar.
 472    "show_sign_in": true,
 473    // Whether to show the menus in the titlebar.
 474    "show_menus": false,
 475    // The layout of window control buttons in the title bar (Linux only).
 476    "button_layout": "platform_default",
 477  },
 478  "audio": {
 479    // Automatically increase or decrease you microphone's volume. This affects how
 480    // loud you sound to others.
 481    //
 482    // Recommended: off (default)
 483    // Microphones are too quite in zed, until everyone is on experimental
 484    // audio and has auto speaker volume on this will make you very loud
 485    // compared to other speakers.
 486    "experimental.auto_microphone_volume": false,
 487    // Select specific output audio device.
 488    // `null` means use system default.
 489    // Any unrecognized output device will fall back to system default.
 490    "experimental.output_audio_device": null,
 491    // Select specific input audio device.
 492    // `null` means use system default.
 493    // Any unrecognized input device will fall back to system default.
 494    "experimental.input_audio_device": null,
 495  },
 496  // Scrollbar related settings
 497  "scrollbar": {
 498    // When to show the scrollbar in the editor.
 499    // This setting can take four values:
 500    //
 501    // 1. Show the scrollbar if there's important information or
 502    //    follow the system's configured behavior (default):
 503    //   "auto"
 504    // 2. Match the system's configured behavior:
 505    //    "system"
 506    // 3. Always show the scrollbar:
 507    //    "always"
 508    // 4. Never show the scrollbar:
 509    //    "never"
 510    "show": "auto",
 511    // Whether to show cursor positions in the scrollbar.
 512    "cursors": true,
 513    // Whether to show git diff indicators in the scrollbar.
 514    "git_diff": true,
 515    // Whether to show buffer search results in the scrollbar.
 516    "search_results": true,
 517    // Whether to show selected text occurrences in the scrollbar.
 518    "selected_text": true,
 519    // Whether to show selected symbol occurrences in the scrollbar.
 520    "selected_symbol": true,
 521    // Which diagnostic indicators to show in the scrollbar:
 522    //  - "none" or false: do not show diagnostics
 523    //  - "error": show only errors
 524    //  - "warning": show only errors and warnings
 525    //  - "information": show only errors, warnings, and information
 526    //  - "all" or true: show all diagnostics
 527    "diagnostics": "all",
 528    // Forcefully enable or disable the scrollbar for each axis
 529    "axes": {
 530      // When false, forcefully disables the horizontal scrollbar. Otherwise, obey other settings.
 531      "horizontal": true,
 532      // When false, forcefully disables the vertical scrollbar. Otherwise, obey other settings.
 533      "vertical": true,
 534    },
 535  },
 536  // Minimap related settings
 537  "minimap": {
 538    // When to show the minimap in the editor.
 539    // This setting can take three values:
 540    // 1. Show the minimap if the editor's scrollbar is visible:
 541    //    "auto"
 542    // 2. Always show the minimap:
 543    //    "always"
 544    // 3. Never show the minimap:
 545    //    "never" (default)
 546    "show": "never",
 547    // Where to show the minimap in the editor.
 548    // This setting can take two values:
 549    // 1. Show the minimap on the focused editor only:
 550    //    "active_editor" (default)
 551    // 2. Show the minimap on all open editors:
 552    //    "all_editors"
 553    "display_in": "active_editor",
 554    // When to show the minimap thumb.
 555    // This setting can take two values:
 556    // 1. Show the minimap thumb if the mouse is over the minimap:
 557    //    "hover"
 558    // 2. Always show the minimap thumb:
 559    //    "always" (default)
 560    "thumb": "always",
 561    // How the minimap thumb border should look.
 562    // This setting can take five values:
 563    // 1. Display a border on all sides of the thumb:
 564    //    "thumb_border": "full"
 565    // 2. Display a border on all sides except the left side of the thumb:
 566    //    "thumb_border": "left_open" (default)
 567    // 3. Display a border on all sides except the right side of the thumb:
 568    //    "thumb_border": "right_open"
 569    // 4. Display a border only on the left side of the thumb:
 570    //    "thumb_border": "left_only"
 571    // 5. Display the thumb without any border:
 572    //    "thumb_border": "none"
 573    "thumb_border": "left_open",
 574    // How to highlight the current line in the minimap.
 575    // This setting can take the following values:
 576    //
 577    // 1. `null` to inherit the editor `current_line_highlight` setting (default)
 578    // 2. "line" or "all" to highlight the current line in the minimap.
 579    // 3. "gutter" or "none" to not highlight the current line in the minimap.
 580    "current_line_highlight": null,
 581    // Maximum number of columns to display in the minimap.
 582    "max_width_columns": 80,
 583  },
 584  // Enable middle-click paste on Linux.
 585  "middle_click_paste": true,
 586  // What to do when multibuffer is double clicked in some of its excerpts
 587  // (parts of singleton buffers).
 588  // May take 2 values:
 589  //  1. Behave as a regular buffer and select the whole word (default).
 590  //         "double_click_in_multibuffer": "select"
 591  //  2. Open the excerpt clicked as a new buffer in the new tab.
 592  //         "double_click_in_multibuffer": "open",
 593  // For the case of "open", regular selection behavior can be achieved by holding `alt` when double clicking.
 594  "double_click_in_multibuffer": "select",
 595  "gutter": {
 596    // Whether to show line numbers in the gutter.
 597    "line_numbers": true,
 598    // Whether to show runnables buttons in the gutter.
 599    "runnables": true,
 600    // Whether to show breakpoints in the gutter.
 601    "breakpoints": true,
 602    // Whether to show fold buttons in the gutter.
 603    "folds": true,
 604    // Minimum number of characters to reserve space for in the gutter.
 605    "min_line_number_digits": 4,
 606  },
 607  "indent_guides": {
 608    // Whether to show indent guides in the editor.
 609    "enabled": true,
 610    // The width of the indent guides in pixels, between 1 and 10.
 611    "line_width": 1,
 612    // The width of the active indent guide in pixels, between 1 and 10.
 613    "active_line_width": 1,
 614    // Determines how indent guides are colored.
 615    // This setting can take the following three values:
 616    //
 617    // 1. "disabled"
 618    // 2. "fixed"
 619    // 3. "indent_aware"
 620    "coloring": "fixed",
 621    // Determines how indent guide backgrounds are colored.
 622    // This setting can take the following two values:
 623    //
 624    // 1. "disabled"
 625    // 2. "indent_aware"
 626    "background_coloring": "disabled",
 627  },
 628  // Whether the editor will scroll beyond the last line.
 629  "scroll_beyond_last_line": "one_page",
 630  // The number of lines to keep above/below the cursor when scrolling with the keyboard
 631  "vertical_scroll_margin": 3,
 632  // Whether to scroll when clicking near the edge of the visible text area.
 633  "autoscroll_on_clicks": false,
 634  // The number of characters to keep on either side when scrolling with the mouse
 635  "horizontal_scroll_margin": 5,
 636  // Scroll sensitivity multiplier. This multiplier is applied
 637  // to both the horizontal and vertical delta values while scrolling.
 638  "scroll_sensitivity": 1.0,
 639  // Scroll sensitivity multiplier for fast scrolling. This multiplier is applied
 640  // to both the horizontal and vertical delta values while scrolling. Fast scrolling
 641  // happens when a user holds the alt or option key while scrolling.
 642  "fast_scroll_sensitivity": 4.0,
 643  "sticky_scroll": {
 644    // Whether to stick scopes to the top of the editor.
 645    "enabled": false,
 646  },
 647  "relative_line_numbers": "disabled",
 648  // If 'search_wrap' is disabled, search result do not wrap around the end of the file.
 649  "search_wrap": true,
 650  // Search options to enable by default when opening new project and buffer searches.
 651  "search": {
 652    // Whether to show the project search button in the status bar.
 653    "button": true,
 654    // Whether to only match on whole words.
 655    "whole_word": false,
 656    // Whether to match case sensitively.
 657    "case_sensitive": false,
 658    // Whether to include gitignored files in search results.
 659    "include_ignored": false,
 660    // Whether to interpret the search query as a regular expression.
 661    "regex": false,
 662    // Whether to center the cursor on each search match when navigating.
 663    "center_on_match": false,
 664  },
 665  // When to populate a new search's query based on the text under the cursor.
 666  // This setting can take the following three values:
 667  //
 668  // 1. Always populate the search query with the word under the cursor (default).
 669  //    "always"
 670  // 2. Only populate the search query when there is text selected
 671  //    "selection"
 672  // 3. Never populate the search query
 673  //    "never"
 674  "seed_search_query_from_cursor": "always",
 675  // When enabled, automatically adjusts search case sensitivity based on your query.
 676  // If your search query contains any uppercase letters, the search becomes case-sensitive;
 677  // if it contains only lowercase letters, the search becomes case-insensitive.
 678  "use_smartcase_search": false,
 679  // Inlay hint related settings
 680  "inlay_hints": {
 681    // Global switch to toggle hints on and off, switched off by default.
 682    "enabled": false,
 683    // Toggle certain types of hints on and off, all switched on by default.
 684    "show_type_hints": true,
 685    "show_parameter_hints": true,
 686    "show_value_hints": true,
 687    // Corresponds to null/None LSP hint type value.
 688    "show_other_hints": true,
 689    // Whether to show a background for inlay hints.
 690    //
 691    // If set to `true`, the background will use the `hint.background` color from the current theme.
 692    "show_background": false,
 693    // Time to wait after editing the buffer, before requesting the hints,
 694    // set to 0 to disable debouncing.
 695    "edit_debounce_ms": 700,
 696    // Time to wait after scrolling the buffer, before requesting the hints,
 697    // set to 0 to disable debouncing.
 698    "scroll_debounce_ms": 50,
 699    // A set of modifiers which, when pressed, will toggle the visibility of inlay hints.
 700    // If the set if empty or not all the modifiers specified are pressed, inlay hints will not be toggled.
 701    "toggle_on_modifiers_press": {
 702      "control": false,
 703      "shift": false,
 704      "alt": false,
 705      "platform": false,
 706      "function": false,
 707    },
 708  },
 709  // Whether to resize all the panels in a dock when resizing the dock.
 710  // Can be a combination of "left", "right" and "bottom".
 711  "resize_all_panels_in_dock": ["left"],
 712  "project_panel": {
 713    // Whether to show the project panel button in the status bar
 714    "button": true,
 715    // Whether to hide the gitignore entries in the project panel.
 716    "hide_gitignore": false,
 717    // Default width of the project panel.
 718    "default_width": 240,
 719    // Where to dock the project panel. Can be 'left' or 'right'.
 720    "dock": "left",
 721    // Spacing between worktree entries in the project panel. Can be 'comfortable' or 'standard'.
 722    "entry_spacing": "comfortable",
 723    // Whether to show file icons in the project panel.
 724    "file_icons": true,
 725    // Whether to show folder icons or chevrons for directories in the project panel.
 726    "folder_icons": true,
 727    // Whether to show the git status in the project panel.
 728    "git_status": true,
 729    // Amount of indentation for nested items.
 730    "indent_size": 20,
 731    // Whether to reveal it in the project panel automatically,
 732    // when a corresponding project entry becomes active.
 733    // Gitignored entries are never auto revealed.
 734    "auto_reveal_entries": true,
 735    // Whether the project panel should open on startup.
 736    "starts_open": true,
 737    // Whether to fold directories automatically and show compact folders
 738    // (e.g. "a/b/c" ) when a directory has only one subdirectory inside.
 739    "auto_fold_dirs": true,
 740    // Whether to show folder names with bold text in the project panel.
 741    "bold_folder_labels": false,
 742    // Scrollbar-related settings
 743    "scrollbar": {
 744      // When to show the scrollbar in the project panel.
 745      // This setting can take five values:
 746      //
 747      // 1. null (default): Inherit editor settings
 748      // 2. Show the scrollbar if there's important information or
 749      //    follow the system's configured behavior (default):
 750      //   "auto"
 751      // 3. Match the system's configured behavior:
 752      //    "system"
 753      // 4. Always show the scrollbar:
 754      //    "always"
 755      // 5. Never show the scrollbar:
 756      //    "never"
 757      "show": null,
 758      // Whether to allow horizontal scrolling in the project panel.
 759      // When false, the view is locked to the leftmost position and long file names are clipped.
 760      "horizontal_scroll": true,
 761    },
 762    // Which files containing diagnostic errors/warnings to mark in the project panel.
 763    // This setting can take the following three values:
 764    //
 765    // 1. Do not mark any files:
 766    //    "off"
 767    // 2. Only mark files with errors:
 768    //    "errors"
 769    // 3. Mark files with errors and warnings:
 770    //    "all"
 771    "show_diagnostics": "all",
 772    // Whether to stick parent directories at top of the project panel.
 773    "sticky_scroll": true,
 774    // Settings related to indent guides in the project panel.
 775    "indent_guides": {
 776      // When to show indent guides in the project panel.
 777      // This setting can take two values:
 778      //
 779      // 1. Always show indent guides:
 780      //    "always"
 781      // 2. Never show indent guides:
 782      //    "never"
 783      "show": "always",
 784    },
 785    // Sort order for entries in the project panel.
 786    // This setting can take three values:
 787    //
 788    // 1. Show directories first, then files:
 789    //    "directories_first"
 790    // 2. Mix directories and files together:
 791    //    "mixed"
 792    // 3. Show files first, then directories:
 793    //    "files_first"
 794    "sort_mode": "directories_first",
 795    // Whether to show error and warning count badges next to file names in the project panel.
 796    "diagnostic_badges": false,
 797    // Whether to show the git status indicator next to file names in the project panel.
 798    "git_status_indicator": false,
 799    // Whether to enable drag-and-drop operations in the project panel.
 800    "drag_and_drop": true,
 801    // Whether to hide the root entry when only one folder is open in the window;
 802    // this also affects how file paths appear in the file finder history.
 803    "hide_root": false,
 804    // Whether to hide the hidden entries in the project panel.
 805    "hide_hidden": false,
 806    // Settings for automatically opening files.
 807    "auto_open": {
 808      // Whether to automatically open newly created files in the editor.
 809      "on_create": true,
 810      // Whether to automatically open files after pasting or duplicating them.
 811      "on_paste": true,
 812      // Whether to automatically open files dropped from external sources.
 813      "on_drop": true,
 814    },
 815  },
 816  "outline_panel": {
 817    // Whether to show the outline panel button in the status bar
 818    "button": true,
 819    // Default width of the outline panel.
 820    "default_width": 300,
 821    // Where to dock the outline panel. Can be 'left' or 'right'.
 822    "dock": "left",
 823    // Whether to show file icons in the outline panel.
 824    "file_icons": true,
 825    // Whether to show folder icons or chevrons for directories in the outline panel.
 826    "folder_icons": true,
 827    // Whether to show the git status in the outline panel.
 828    "git_status": true,
 829    // Amount of indentation for nested items.
 830    "indent_size": 20,
 831    // Whether to reveal it in the outline panel automatically,
 832    // when a corresponding outline entry becomes active.
 833    // Gitignored entries are never auto revealed.
 834    "auto_reveal_entries": true,
 835    // Whether to fold directories automatically
 836    // when a directory has only one directory inside.
 837    "auto_fold_dirs": true,
 838    // Settings related to indent guides in the outline panel.
 839    "indent_guides": {
 840      // When to show indent guides in the outline panel.
 841      // This setting can take two values:
 842      //
 843      // 1. Always show indent guides:
 844      //    "always"
 845      // 2. Never show indent guides:
 846      //    "never"
 847      "show": "always",
 848    },
 849    // Scrollbar-related settings
 850    "scrollbar": {
 851      // When to show the scrollbar in the project panel.
 852      // This setting can take five values:
 853      //
 854      // 1. null (default): Inherit editor settings
 855      // 2. Show the scrollbar if there's important information or
 856      //    follow the system's configured behavior (default):
 857      //   "auto"
 858      // 3. Match the system's configured behavior:
 859      //    "system"
 860      // 4. Always show the scrollbar:
 861      //    "always"
 862      // 5. Never show the scrollbar:
 863      //    "never"
 864      "show": null,
 865    },
 866    // Default depth to expand outline items in the current file.
 867    // Set to 0 to collapse all items that have children, 1 or higher to collapse items at that depth or deeper.
 868    "expand_outlines_with_depth": 100,
 869  },
 870  "collaboration_panel": {
 871    // Whether to show the collaboration panel button in the status bar.
 872    "button": true,
 873    // Where to dock the collaboration panel. Can be 'left' or 'right'.
 874    "dock": "left",
 875    // Default width of the collaboration panel.
 876    "default_width": 240,
 877  },
 878  "git_panel": {
 879    // Whether to show the git panel button in the status bar.
 880    "button": true,
 881    // Where to dock the git panel. Can be 'left' or 'right'.
 882    "dock": "left",
 883    // Default width of the git panel.
 884    "default_width": 360,
 885    // Style of the git status indicator in the panel.
 886    //
 887    // Choices: label_color, icon
 888    // Default: icon
 889    "status_style": "icon",
 890    // Whether to show file icons in the git panel.
 891    //
 892    // Default: false
 893    "file_icons": false,
 894    // Whether to show folder icons or chevrons for directories in the git panel.
 895    //
 896    // Default: true
 897    "folder_icons": true,
 898    // What branch name to use if `init.defaultBranch` is not set
 899    //
 900    // Default: main
 901    "fallback_branch_name": "main",
 902    // Whether to sort entries in the panel by path or by status (the default).
 903    //
 904    // Default: false
 905    "sort_by_path": false,
 906    // Whether to collapse untracked files in the diff panel.
 907    //
 908    // Default: false
 909    "collapse_untracked_diff": false,
 910    /// Whether to show entries with tree or flat view in the panel
 911    ///
 912    /// Default: false
 913    "tree_view": false,
 914    // Whether the git panel should open on startup.
 915    //
 916    // Default: false
 917    "starts_open": false,
 918    // Whether to show a badge on the git panel icon with the count of uncommitted changes.
 919    //
 920    // Default: false
 921    "show_count_badge": false,
 922    "scrollbar": {
 923      // When to show the scrollbar in the git panel.
 924      //
 925      // Choices: always, auto, never, system
 926      // Default: inherits editor scrollbar settings
 927      // "show": null
 928    },
 929    // Whether to show the addition/deletion change count next to each file in the Git panel.
 930    //
 931    // Default: true
 932    "diff_stats": true,
 933  },
 934  "message_editor": {
 935    // Whether to automatically replace emoji shortcodes with emoji characters.
 936    // For example: typing `:wave:` gets replaced with `👋`.
 937    "auto_replace_emoji_shortcode": true,
 938  },
 939  "notification_panel": {
 940    // Whether to show the notification panel button in the status bar.
 941    "button": true,
 942    // Where to dock the notification panel. Can be 'left' or 'right'.
 943    "dock": "right",
 944    // Default width of the notification panel.
 945    "default_width": 380,
 946    // Whether to show a badge on the notification panel icon with the count of unread notifications.
 947    "show_count_badge": false,
 948  },
 949  "agent": {
 950    // Whether the inline assistant should use streaming tools, when available
 951    "inline_assistant_use_streaming_tools": true,
 952    // Whether the agent is enabled.
 953    "enabled": true,
 954    // Whether to show the agent panel button in the status bar.
 955    "button": true,
 956    // Where to dock the agent panel. Can be 'left', 'right' or 'bottom'.
 957    "dock": "right",
 958    // Whether the agent panel should use flexible (proportional) sizing.
 959    //
 960    // Default: true
 961    "flexible": true,
 962    // Where to position the sidebar. Can be 'left' or 'right'.
 963    "sidebar_side": "left",
 964    // Default width when the agent panel is docked to the left or right.
 965    "default_width": 640,
 966    // Default height when the agent panel is docked to the bottom.
 967    "default_height": 320,
 968    // Maximum content width when the agent panel is wider than this value.
 969    // Content will be centered within the panel.
 970    "max_content_width": 850,
 971    // The default model to use when creating new threads.
 972    "default_model": {
 973      // The provider to use.
 974      "provider": "zed.dev",
 975      // The model to use.
 976      "model": "claude-sonnet-4",
 977      // Whether thinking is enabled.
 978      "enable_thinking": false,
 979    },
 980    // Additional parameters for language model requests. When making a request to a model, parameters will be taken
 981    // from the last entry in this list that matches the model's provider and name. In each entry, both provider
 982    // and model are optional, so that you can specify parameters for either one.
 983    "model_parameters": [
 984      // To set parameters for all requests to OpenAI models:
 985      // {
 986      //   "provider": "openai",
 987      //   "temperature": 0.5
 988      // }
 989      //
 990      // To set parameters for all requests in general:
 991      // {
 992      //   "temperature": 0
 993      // }
 994      //
 995      // To set parameters for a specific provider and model:
 996      // {
 997      //   "provider": "zed.dev",
 998      //   "model": "claude-sonnet-4",
 999      //   "temperature": 1.0
1000      // }
1001    ],
1002    // Permission rules for tool actions.
1003    //
1004    // The "default" setting applies when no tool-specific rules match.
1005    // For external agents that define their own permission modes,
1006    // "deny" and "confirm" still take precedence — the external agent's
1007    // permission system is only used when Zed would allow the action.
1008    //
1009    // Per-tool regex patterns ("tools" below) match against tool input text
1010    // (commands, paths, URLs, etc.). For `copy_path` and `move_path`,
1011    // patterns are matched independently against each path (source and
1012    // destination).
1013    "tool_permissions": {
1014      // Global default permission when no tool-specific rules match.
1015      // "allow" - Auto-approve without prompting
1016      // "deny" - Auto-reject
1017      // "confirm" - Always prompt (default)
1018      "default": "confirm",
1019      // Per-tool permission rules. Regex patterns match against tool input text.
1020      // The per-tool "default" also applies to MCP tools.
1021      // Each tool can have its own default and regex patterns.
1022      "tools": {
1023        // "terminal": {
1024        //   "default": "confirm",
1025        //   "always_confirm": [
1026        //     // Destructive git operations
1027        //     { "pattern": "git\\s+(reset|clean)\\s+--hard" },
1028        //     { "pattern": "git\\s+push\\s+(-f|--force)" },
1029        //   ],
1030        // },
1031        // "edit_file": {
1032        //   "default": "confirm",
1033        //   "always_deny": [
1034        //     // Secrets and credentials
1035        //     { "pattern": "\\.env($|\\.)" },
1036        //     { "pattern": "secrets?/" },
1037        //     { "pattern": "\\.pem$" },
1038        //     { "pattern": "\\.key$" },
1039        //   ],
1040        // },
1041      },
1042    },
1043    // When enabled, agent edits will be displayed in single-file editors for review
1044    "single_file_review": false,
1045    // When enabled, show voting thumbs for feedback on agent edits.
1046    "enable_feedback": true,
1047    "default_profile": "write",
1048    "profiles": {
1049      "write": {
1050        "name": "Write",
1051        "enable_all_context_servers": true,
1052        "tools": {
1053          "copy_path": true,
1054          "create_directory": true,
1055          "delete_path": true,
1056          "diagnostics": true,
1057          "edit_file": true,
1058          "fetch": true,
1059          "list_directory": true,
1060          "project_notifications": false,
1061          "move_path": true,
1062          "now": true,
1063          "find_path": true,
1064          "read_file": true,
1065          "restore_file_from_disk": true,
1066          "save_file": true,
1067          "open": true,
1068          "grep": true,
1069          "spawn_agent": true,
1070          "terminal": true,
1071          "thinking": true,
1072          "update_plan": true,
1073          "web_search": true,
1074        },
1075      },
1076      "ask": {
1077        "name": "Ask",
1078        // We don't know which of the context server tools are safe for the "Ask" profile, so we don't enable them by default.
1079        // "enable_all_context_servers": true,
1080        "tools": {
1081          "diagnostics": true,
1082          "fetch": true,
1083          "list_directory": true,
1084          "project_notifications": false,
1085          "now": true,
1086          "find_path": true,
1087          "read_file": true,
1088          "open": true,
1089          "grep": true,
1090          "spawn_agent": true,
1091          "thinking": true,
1092          "update_plan": true,
1093          "web_search": true,
1094        },
1095      },
1096      "minimal": {
1097        "name": "Minimal",
1098        "enable_all_context_servers": false,
1099        "tools": {},
1100      },
1101    },
1102    // Whether to start a new thread in the current local project or in a new Git worktree.
1103    //
1104    // Default: local_project
1105    "new_thread_location": "local_project",
1106    // Where to show notifications when the agent has either completed
1107    // its response, or else needs confirmation before it can run a
1108    // tool action.
1109    // "primary_screen" - Show the notification only on your primary screen (default)
1110    // "all_screens" - Show these notifications on all screens
1111    // "never" - Never show these notifications
1112    "notify_when_agent_waiting": "primary_screen",
1113    // When to play a sound when the agent has either completed
1114    // its response, or needs user input.
1115    // "never" - Never play the sound
1116    // "when_hidden" - Only play the sound when the agent panel is not visible
1117    // "always" - Always play the sound
1118    //
1119    // Default: never
1120    "play_sound_when_agent_done": "never",
1121    // Whether to have edit cards in the agent panel expanded, showing a preview of the full diff.
1122    //
1123    // Default: true
1124    "expand_edit_card": true,
1125    // Whether to have terminal cards in the agent panel expanded, showing the whole command output.
1126    //
1127    // Default: true
1128    "expand_terminal_card": true,
1129    // How thinking blocks should be displayed by default in the agent panel.
1130    //
1131    // Default: auto
1132    "thinking_display": "auto",
1133    // Whether clicking the stop button on a running terminal tool should also cancel the agent's generation.
1134    // Note that this only applies to the stop button, not to ctrl+c inside the terminal.
1135    //
1136    // Default: true
1137    "cancel_generation_on_terminal_stop": true,
1138    // Whether to always use cmd-enter (or ctrl-enter on Linux or Windows) to send messages in the agent panel.
1139    //
1140    // Default: false
1141    "use_modifier_to_send": false,
1142    // Minimum number of lines to display in the agent message editor.
1143    //
1144    // Default: 4
1145    "message_editor_min_lines": 4,
1146    // Whether to show turn statistics (elapsed time during generation, final turn duration).
1147    //
1148    // Default: false
1149    "show_turn_stats": false,
1150    // Whether to show the merge conflict indicator in the status bar
1151    // that offers to resolve conflicts using the agent.
1152    //
1153    // Default: true
1154    "show_merge_conflict_indicator": true,
1155  },
1156  // Whether the screen sharing icon is shown in the os status bar.
1157  "show_call_status_icon": true,
1158  // Whether to use language servers to provide code intelligence.
1159  "enable_language_server": true,
1160  // Whether to perform linked edits of associated ranges, if the language server supports it.
1161  // For example, when editing opening <html> tag, the contents of the closing </html> tag will be edited as well.
1162  "linked_edits": true,
1163  // The list of language servers to use (or disable) for all languages.
1164  //
1165  // This is typically customized on a per-language basis.
1166  "language_servers": ["..."],
1167  // Controls how semantic tokens from language servers are used for syntax highlighting.
1168  //
1169  // Options:
1170  // - "off": Do not request semantic tokens from language servers.
1171  // - "combined": Use LSP semantic tokens together with tree-sitter highlighting as base.
1172  // - "full": Use LSP semantic tokens exclusively to highlight the text, tree-sitter syntax highlighting is off.
1173  //
1174  // May require language server restart to properly apply.
1175  "semantic_tokens": "off",
1176
1177  // Controls whether folding ranges from language servers are used instead of
1178  // tree-sitter and indent-based folding.
1179  //
1180  // Options:
1181  // - "off": Use tree-sitter and indent-based folding (default).
1182  // - "on": Use LSP folding wherever possible, falling back to tree-sitter and indent-based folding when no results were returned by the server.
1183  "document_folding_ranges": "off",
1184
1185  // Controls the source of document symbols used for outlines and breadcrumbs.
1186  //
1187  // Options:
1188  // - "off": Use tree-sitter queries to compute document symbols (default).
1189  // - "on": Use the language server's `textDocument/documentSymbol` LSP response. When enabled, tree-sitter is not used for document symbols.
1190  "document_symbols": "off",
1191
1192  // When to automatically save edited buffers. This setting can
1193  // take four values.
1194  //
1195  // 1. Never automatically save:
1196  //     "autosave": "off",
1197  // 2. Save when changing focus away from the Zed window:
1198  //     "autosave": "on_window_change",
1199  // 3. Save when changing focus away from a specific buffer:
1200  //     "autosave": "on_focus_change",
1201  // 4. Save when idle for a certain amount of time:
1202  //     "autosave": { "after_delay": {"milliseconds": 500} },
1203  "autosave": "off",
1204  // Maximum number of tabs per pane. Unset for unlimited.
1205  "max_tabs": null,
1206  // Settings related to the editor's tab bar.
1207  "tab_bar": {
1208    // Whether or not to show the tab bar in the editor
1209    "show": true,
1210    // Whether or not to show the navigation history buttons.
1211    "show_nav_history_buttons": true,
1212    // Whether or not to show the tab bar buttons.
1213    "show_tab_bar_buttons": true,
1214    // Whether or not to show pinned tabs in a separate row.
1215    // When enabled, pinned tabs appear in a top row and unpinned tabs in a bottom row.
1216    // When disabled, all tabs appear in a single row (default behavior).
1217    "show_pinned_tabs_in_separate_row": false,
1218  },
1219  // Settings related to the editor's tabs
1220  "tabs": {
1221    // Show git status colors in the editor tabs.
1222    "git_status": false,
1223    // Position of the close button on the editor tabs.
1224    // One of: ["right", "left"]
1225    "close_position": "right",
1226    // Whether to show the file icon for a tab.
1227    "file_icons": false,
1228    // Controls the appearance behavior of the tab's close button.
1229    //
1230    // 1. Show it just upon hovering the tab. (default)
1231    //     "hover"
1232    // 2. Show it persistently.
1233    //     "always"
1234    // 3. Never show it, even if hovering it.
1235    //     "hidden"
1236    "show_close_button": "hover",
1237    // What to do after closing the current tab.
1238    //
1239    // 1. Activate the tab that was open previously (default)
1240    //     "history"
1241    // 2. Activate the right neighbour tab if present
1242    //     "neighbour"
1243    // 3. Activate the left neighbour tab if present
1244    //     "left_neighbour"
1245    "activate_on_close": "history",
1246    // Which files containing diagnostic errors/warnings to mark in the tabs.
1247    // Diagnostics are only shown when file icons are also active.
1248    // This setting only works when can take the following three values:
1249    //
1250    // 1. Do not mark any files:
1251    //    "off"
1252    // 2. Only mark files with errors:
1253    //    "errors"
1254    // 3. Mark files with errors and warnings:
1255    //    "all"
1256    "show_diagnostics": "off",
1257  },
1258  // Settings related to preview tabs.
1259  "preview_tabs": {
1260    // Whether preview tabs should be enabled.
1261    // Preview tabs allow you to open files in preview mode, where they close automatically
1262    // when you open another preview tab.
1263    // This is useful for quickly viewing files without cluttering your workspace.
1264    "enabled": true,
1265    // Whether to open tabs in preview mode when opened from the project panel with a single click.
1266    "enable_preview_from_project_panel": true,
1267    // Whether to open tabs in preview mode when selected from the file finder.
1268    "enable_preview_from_file_finder": false,
1269    // Whether to open tabs in preview mode when opened from a multibuffer.
1270    "enable_preview_from_multibuffer": true,
1271    // Whether to open tabs in preview mode when code navigation is used to open a multibuffer.
1272    "enable_preview_multibuffer_from_code_navigation": false,
1273    // Whether to open tabs in preview mode when code navigation is used to open a single file.
1274    "enable_preview_file_from_code_navigation": true,
1275    // Whether to keep tabs in preview mode when code navigation is used to navigate away from them.
1276    // If `enable_preview_file_from_code_navigation` or `enable_preview_multibuffer_from_code_navigation` is also true, the new tab may replace the existing one.
1277    "enable_keep_preview_on_code_navigation": false,
1278  },
1279  // Settings related to the file finder.
1280  "file_finder": {
1281    // Whether to show file icons in the file finder.
1282    "file_icons": true,
1283    // Determines how much space the file finder can take up in relation to the available window width.
1284    // There are 5 possible width values:
1285    //
1286    // 1. Small: This value is essentially a fixed width.
1287    //    "modal_max_width": "small"
1288    // 2. Medium:
1289    //    "modal_max_width": "medium"
1290    // 3. Large:
1291    //    "modal_max_width": "large"
1292    // 4. Extra Large:
1293    //    "modal_max_width": "xlarge"
1294    // 5. Fullscreen: This value removes any horizontal padding, as it consumes the whole viewport width.
1295    //    "modal_max_width": "full"
1296    //
1297    // Default: small
1298    "modal_max_width": "small",
1299    // Determines whether the file finder should skip focus for the active file in search results.
1300    // There are 2 possible values:
1301    //
1302    // 1. true: When searching for files, if the currently active file appears as the first result,
1303    //    auto-focus will skip it and focus the second result instead.
1304    //    "skip_focus_for_active_in_search": true
1305    //
1306    // 2. false: When searching for files, the first result will always receive focus,
1307    //    even if it's the currently active file.
1308    //    "skip_focus_for_active_in_search": false
1309    //
1310    // Default: true
1311    "skip_focus_for_active_in_search": true,
1312    // Whether to use gitignored files when searching.
1313    // Only the file Zed had indexed will be used, not necessary all the gitignored files.
1314    //
1315    // Can accept 3 values:
1316    //   * "all": Use all gitignored files
1317    //   * "indexed": Use only the files Zed had indexed
1318    //   * "smart": Be smart and search for ignored when called from a gitignored worktree
1319    "include_ignored": "smart",
1320    // Whether to include text channels in file finder results.
1321    "include_channels": false,
1322  },
1323  // Whether or not to remove any trailing whitespace from lines of a buffer
1324  // before saving it.
1325  "remove_trailing_whitespace_on_save": true,
1326  // Whether to start a new line with a comment when a previous line is a comment as well.
1327  "extend_comment_on_newline": true,
1328  // Whether to continue markdown lists when pressing enter.
1329  "extend_list_on_newline": true,
1330  // Whether to indent list items when pressing tab after a list marker.
1331  "indent_list_on_tab": true,
1332  // Removes any lines containing only whitespace at the end of the file and
1333  // ensures just one newline at the end.
1334  "ensure_final_newline_on_save": true,
1335  // Whether or not to perform a buffer format before saving: [on, off]
1336  // Keep in mind, if the autosave with delay is enabled, format_on_save will be ignored
1337  "format_on_save": "on",
1338  // How to perform a buffer format. This setting can take multiple values:
1339  //
1340  // 1. Default. Format files using Zed's Prettier integration (if applicable),
1341  //    or falling back to formatting via language server:
1342  //     "formatter": "auto"
1343  // 2. Format code using the current language server:
1344  //     "formatter": "language_server"
1345  // 3. Format code using a specific language server:
1346  //     "formatter": {"language_server": {"name": "ruff"}}
1347  // 4. Format code using an external command:
1348  //     "formatter": {
1349  //       "external": {
1350  //         "command": "prettier",
1351  //         "arguments": ["--stdin-filepath", "{buffer_path}"]
1352  //       }
1353  //     }
1354  // 5. Format code using Zed's Prettier integration:
1355  //     "formatter": "prettier"
1356  // 6. Format code using a code action
1357  //     "formatter": {"code_action": "source.fixAll.eslint"}
1358  // 7. An array of any format step specified above to apply in order
1359  //     "formatter": [{"code_action": "source.fixAll.eslint"}, "prettier"]
1360  "formatter": "auto",
1361  // How to soft-wrap long lines of text.
1362  // Possible values:
1363  //
1364  // 1. Prefer a single line generally, unless an overly long line is encountered.
1365  //      "soft_wrap": "none",
1366  //      "soft_wrap": "prefer_line", // (deprecated, same as "none")
1367  // 2. Soft wrap lines that overflow the editor.
1368  //      "soft_wrap": "editor_width",
1369  // 3. Soft wrap lines at the preferred line length.
1370  //      "soft_wrap": "preferred_line_length",
1371  // 4. Soft wrap lines at the preferred line length or the editor width (whichever is smaller).
1372  //      "soft_wrap": "bounded",
1373  "soft_wrap": "none",
1374  // The column at which to soft-wrap lines, for buffers where soft-wrap
1375  // is enabled.
1376  "preferred_line_length": 80,
1377  // Whether to indent lines using tab characters, as opposed to multiple
1378  // spaces.
1379  "hard_tabs": false,
1380  // How many columns a tab should occupy.
1381  "tab_size": 4,
1382  // Number of lines to search for modelines at the beginning and end of files.
1383  // Modelines contain editor directives (e.g., vim/emacs settings) that configure
1384  // the editor behavior for specific files.
1385  //
1386  // A value of 0 disables modelines support.
1387  "modeline_lines": 5,
1388  // What debuggers are preferred by default for all languages.
1389  "debuggers": [],
1390  // Whether to enable word diff highlighting in the editor.
1391  //
1392  // When enabled, changed words within modified lines are highlighted
1393  // to show exactly what changed.
1394  //
1395  // Default: true
1396  "word_diff_enabled": true,
1397  // Control what info is collected by Zed.
1398  "telemetry": {
1399    // Send debug info like crash reports.
1400    "diagnostics": true,
1401    // Send anonymized usage data like what languages you're using Zed with.
1402    "metrics": true,
1403  },
1404  // Whether to disable all AI features in Zed.
1405  //
1406  // Default: false
1407  "disable_ai": false,
1408  // Automatically update Zed. This setting may be ignored on Linux if
1409  // installed through a package manager.
1410  "auto_update": true,
1411  // How to render LSP `textDocument/documentColor` colors in the editor.
1412  //
1413  // Possible values:
1414  //
1415  // 1. Do not query and render document colors.
1416  //      "lsp_document_colors": "none",
1417  // 2. Render document colors as inlay hints near the color text (default).
1418  //      "lsp_document_colors": "inlay",
1419  // 3. Draw a border around the color text.
1420  //      "lsp_document_colors": "border",
1421  // 4. Draw a background behind the color text..
1422  //      "lsp_document_colors": "background",
1423  "lsp_document_colors": "inlay",
1424  // Diagnostics configuration.
1425  "diagnostics": {
1426    // Whether to show the project diagnostics button in the status bar.
1427    "button": true,
1428    // Whether to show warnings or not by default.
1429    //
1430    // Default: true
1431    "include_warnings": true,
1432    // Settings for using LSP pull diagnostics mechanism in Zed.
1433    "lsp_pull_diagnostics": {
1434      // Whether to pull for diagnostics or not.
1435      "enabled": true,
1436      // Minimum time to wait before pulling diagnostics from the language server(s).
1437      // 0 turns the debounce off.
1438      "debounce_ms": 50,
1439    },
1440    // Settings for inline diagnostics
1441    "inline": {
1442      // Whether to show diagnostics inline or not
1443      "enabled": false,
1444      // The delay in milliseconds to show inline diagnostics after the
1445      // last diagnostic update.
1446      "update_debounce_ms": 150,
1447      // The amount of padding between the end of the source line and the start
1448      // of the inline diagnostic in units of em widths.
1449      "padding": 4,
1450      // The minimum column to display inline diagnostics. This setting can be
1451      // used to horizontally align inline diagnostics at some column. Lines
1452      // longer than this value will still push diagnostics further to the right.
1453      "min_column": 0,
1454      // The minimum severity of the diagnostics to show inline.
1455      // Inherits editor's diagnostics' max severity settings when `null`.
1456      "max_severity": null,
1457    },
1458  },
1459  // Files or globs of files that will be excluded by Zed entirely. They will be skipped during file
1460  // scans, file searches, and not be displayed in the project file tree. Takes precedence over `file_scan_inclusions`.
1461  "file_scan_exclusions": [
1462    "**/.git",
1463    "**/.svn",
1464    "**/.hg",
1465    "**/.jj",
1466    "**/.sl",
1467    "**/.repo",
1468    "**/CVS",
1469    "**/.DS_Store",
1470    "**/Thumbs.db",
1471    "**/.classpath",
1472    "**/.settings",
1473  ],
1474  // Files or globs of files that will be included by Zed, even when ignored by git. This is useful
1475  // for files that are not tracked by git, but are still important to your project. Note that globs
1476  // that are overly broad can slow down Zed's file scanning. `file_scan_exclusions` takes
1477  // precedence over these inclusions.
1478  "file_scan_inclusions": [".env*"],
1479  // Globs to match files that will be considered "hidden". These files can be hidden from the
1480  // project panel by toggling the "hide_hidden" setting.
1481  "hidden_files": ["**/.*"],
1482  // Globs to match files that will be opened as read-only. You can still view these files,
1483  // but cannot edit them. This is useful for generated files or external dependencies.
1484  "read_only_files": [],
1485  // Git gutter behavior configuration.
1486  "git": {
1487    // Global switch to enable or disable all git integration features.
1488    // If set to true, disables all git integration features.
1489    // If set to false, individual git integration features below will be independently enabled or disabled.
1490    "disable_git": false,
1491    // Whether to enable git status tracking.
1492    "enable_status": true,
1493    // Whether to enable git diff display.
1494    "enable_diff": true,
1495    // Control whether the git gutter is shown. May take 2 values:
1496    // 1. Show the gutter
1497    //      "git_gutter": "tracked_files"
1498    // 2. Hide the gutter
1499    //      "git_gutter": "hide"
1500    "git_gutter": "tracked_files",
1501    /// Sets the debounce threshold (in milliseconds) after which changes are reflected in the git gutter.
1502    ///
1503    /// Default: 0
1504    "gutter_debounce": 0,
1505    // Control whether the git blame information is shown inline,
1506    // in the currently focused line.
1507    "inline_blame": {
1508      "enabled": true,
1509      // Sets a delay after which the inline blame information is shown.
1510      // Delay is restarted with every cursor movement.
1511      "delay_ms": 0,
1512      // The amount of padding between the end of the source line and the start
1513      // of the inline blame in units of em widths.
1514      "padding": 7,
1515      // Whether or not to display the git commit summary on the same line.
1516      "show_commit_summary": false,
1517      // The minimum column number to show the inline blame information at
1518      "min_column": 0,
1519    },
1520    "blame": {
1521      "show_avatar": true,
1522    },
1523    // Control which information is shown in the branch picker.
1524    "branch_picker": {
1525      "show_author_name": true,
1526    },
1527    // How git hunks are displayed visually in the editor.
1528    // This setting can take two values:
1529    //
1530    // 1. Show unstaged hunks filled and staged hunks hollow:
1531    //    "hunk_style": "staged_hollow"
1532    // 2. Show unstaged hunks hollow and staged hunks filled:
1533    //    "hunk_style": "unstaged_hollow"
1534    "hunk_style": "staged_hollow",
1535    // Should the name or path be displayed first in the git view.
1536    // "path_style": "file_name_first" or "file_path_first"
1537    "path_style": "file_name_first",
1538    // Directory where git worktrees are created, relative to the repository
1539    // working directory.
1540    //
1541    // When the resolved directory is outside the project root, the
1542    // project's directory name is automatically appended so that
1543    // sibling repos don't collide. For example, with the default
1544    // "../worktrees" and a project at ~/code/zed, worktrees are
1545    // created under ~/code/worktrees/zed/.
1546    //
1547    // When the resolved directory is inside the project root, no
1548    // extra component is added (it's already project-scoped).
1549    //
1550    // Examples:
1551    //   "../worktrees" — ~/code/worktrees/<project>/ (default)
1552    //   ".git/zed-worktrees" — <project>/.git/zed-worktrees/
1553    //   "my-worktrees" — <project>/my-worktrees/
1554    //
1555    // Trailing slashes are ignored.
1556    "worktree_directory": "../worktrees",
1557  },
1558  // The list of custom Git hosting providers.
1559  "git_hosting_providers": [
1560    // {
1561    //   "provider": "github",
1562    //   "name": "BigCorp GitHub",
1563    //   "base_url": "https://code.big-corp.com"
1564    // }
1565  ],
1566  // Configuration for how direnv configuration should be loaded. May take 2 values:
1567  // 1. Load direnv configuration using `direnv export json` directly.
1568  //      "load_direnv": "direct"
1569  // 2. Load direnv configuration through the shell hook, works for POSIX shells and fish.
1570  //      "load_direnv": "shell_hook"
1571  // 3. Don't load direnv configuration at all.
1572  //      "load_direnv": "disabled"
1573  "load_direnv": "direct",
1574  "edit_predictions": {
1575    // Which edit prediction provider to use.
1576    "provider": "zed",
1577    // A list of globs representing files that edit predictions should be disabled for.
1578    // There's a sensible default list of globs already included.
1579    // Any addition to this list will be merged with the default list.
1580    // Globs are matched relative to the worktree root,
1581    // except when starting with a slash (/) or equivalent in Windows.
1582    "disabled_globs": [
1583      "**/.env*",
1584      "**/*.pem",
1585      "**/*.key",
1586      "**/*.cert",
1587      "**/*.crt",
1588      "**/.dev.vars",
1589      "**/secrets.yml",
1590      "**/.zed/settings.json", // zed project settings
1591      "/**/zed/settings.json", // zed user settings
1592      "/**/zed/keymap.json",
1593    ],
1594    // When to show edit predictions previews in buffer.
1595    // This setting takes two possible values:
1596    // 1. Display predictions inline when there are no language server completions available.
1597    //     "mode": "eager"
1598    // 2. Display predictions inline only when holding a modifier key (alt by default).
1599    //     "mode": "subtle"
1600    "mode": "eager",
1601    // Copilot-specific settings
1602    // "copilot": {
1603    //   "enterprise_uri": "",
1604    //   "proxy": "",
1605    //   "proxy_no_verify": false
1606    //   "enable_next_edit_suggestions": true
1607    // },
1608    "copilot": {
1609      "enterprise_uri": null,
1610      "proxy": null,
1611      "proxy_no_verify": null,
1612      "enable_next_edit_suggestions": true,
1613    },
1614    "codestral": {
1615      "api_url": "https://codestral.mistral.ai",
1616      "model": "codestral-latest",
1617      "max_tokens": 150,
1618    },
1619    "ollama": {
1620      "api_url": "http://localhost:11434",
1621      "model": "qwen2.5-coder:7b-base",
1622      "prompt_format": "infer",
1623      "max_output_tokens": 64,
1624    },
1625    "open_ai_compatible_api": {
1626      "api_url": "",
1627      "model": "",
1628      "prompt_format": "infer",
1629      "max_output_tokens": 64,
1630    },
1631  },
1632  // Settings specific to journaling
1633  "journal": {
1634    // The path of the directory where journal entries are stored
1635    "path": "~",
1636    // What format to display the hours in
1637    // May take 2 values:
1638    // 1. hour12
1639    // 2. hour24
1640    "hour_format": "hour12",
1641  },
1642  // Status bar-related settings.
1643  "status_bar": {
1644    // Whether to show the status bar.
1645    "experimental.show": true,
1646    // Whether to show the name of the active file in the status bar.
1647    "show_active_file": false,
1648    // Whether to show the active language button in the status bar.
1649    "active_language_button": true,
1650    // Whether to show the cursor position button in the status bar.
1651    "cursor_position_button": true,
1652    // Whether to show active line endings button in the status bar.
1653    "line_endings_button": false,
1654    // Control when to show the active encoding in the status bar.
1655    "active_encoding_button": "non_utf8",
1656  },
1657  // Settings specific to the terminal
1658  "terminal": {
1659    // What shell to use when opening a terminal. May take 3 values:
1660    // 1. Use the system's default terminal configuration in /etc/passwd
1661    //      "shell": "system"
1662    // 2. A program:
1663    //      "shell": {
1664    //        "program": "sh"
1665    //      }
1666    // 3. A program with arguments:
1667    //     "shell": {
1668    //         "with_arguments": {
1669    //           "program": "/bin/bash",
1670    //           "args": ["--login"]
1671    //         }
1672    //     }
1673    "shell": "system",
1674    // Where to dock terminals panel. Can be `left`, `right`, `bottom`.
1675    "dock": "bottom",
1676    // Whether the terminal panel should use flexible (proportional) sizing.
1677    //
1678    // Default: true
1679    "flexible": true,
1680    // Default width when the terminal is docked to the left or right.
1681    "default_width": 640,
1682    // Default height when the terminal is docked to the bottom.
1683    "default_height": 320,
1684    // What working directory to use when launching the terminal.
1685    // May take 5 values:
1686    // 1. Use the current file's directory, falling back to the project
1687    //    directory, then the first project in the workspace.
1688    //      "working_directory": "current_file_directory"
1689    // 2. Use the current file's project directory. Fallback to the
1690    //    first project directory strategy if unsuccessful
1691    //      "working_directory": "current_project_directory"
1692    // 3. Use the first project in this workspace's directory
1693    //      "working_directory": "first_project_directory"
1694    // 4. Always use this platform's home directory (if we can find it)
1695    //     "working_directory": "always_home"
1696    // 5. Always use a specific directory. This value will be shell expanded.
1697    //    If this path is not a valid directory the terminal will default to
1698    //    this platform's home directory  (if we can find it)
1699    //      "working_directory": {
1700    //        "always": {
1701    //          "directory": "~/zed/projects/"
1702    //        }
1703    //      }
1704    "working_directory": "current_project_directory",
1705    // Set the cursor blinking behavior in the terminal.
1706    // May take 3 values:
1707    //  1. Never blink the cursor, ignoring the terminal mode
1708    //         "blinking": "off",
1709    //  2. Default the cursor blink to off, but allow the terminal to
1710    //     set blinking
1711    //         "blinking": "terminal_controlled",
1712    //  3. Always blink the cursor, ignoring the terminal mode
1713    //         "blinking": "on",
1714    "blinking": "terminal_controlled",
1715    // Default cursor shape for the terminal.
1716    //  1. A block that surrounds the following character
1717    //     "block"
1718    //  2. A vertical bar
1719    //     "bar"
1720    //  3. An underline / underscore that runs along the following character
1721    //     "underline"
1722    //  4. A box drawn around the following character
1723    //     "hollow"
1724    //
1725    // Default: "block"
1726    "cursor_shape": "block",
1727    // Set whether Alternate Scroll mode (code: ?1007) is active by default.
1728    // Alternate Scroll mode converts mouse scroll events into up / down key
1729    // presses when in the alternate screen (e.g. when running applications
1730    // like vim or  less). The terminal can still set and unset this mode.
1731    // May take 2 values:
1732    //  1. Default alternate scroll mode to on
1733    //         "alternate_scroll": "on",
1734    //  2. Default alternate scroll mode to off
1735    //         "alternate_scroll": "off",
1736    "alternate_scroll": "on",
1737    // Set whether the option key behaves as the meta key.
1738    // May take 2 values:
1739    //  1. Rely on default platform handling of option key, on macOS
1740    //     this means generating certain unicode characters
1741    //         "option_as_meta": false,
1742    //  2. Make the option keys behave as a 'meta' key, e.g. for emacs
1743    //         "option_as_meta": true,
1744    "option_as_meta": false,
1745    // Whether or not selecting text in the terminal will automatically
1746    // copy to the system clipboard.
1747    "copy_on_select": false,
1748    // Whether to keep the text selection after copying it to the clipboard.
1749    "keep_selection_on_copy": true,
1750    // Whether to show the terminal button in the status bar
1751    "button": true,
1752    // Any key-value pairs added to this list will be added to the terminal's
1753    // environment. Use `:` to separate multiple values.
1754    "env": {
1755      // "KEY": "value1:value2"
1756    },
1757    // Set the terminal's line height.
1758    // May take 3 values:
1759    //  1. Use a line height that's comfortable for reading, 1.618
1760    //         "line_height": "comfortable"
1761    //  2. Use a standard line height, 1.3. This option is useful for TUIs,
1762    //      particularly if they use box characters
1763    //         "line_height": "standard",
1764    //  3. Use a custom line height.
1765    //         "line_height": {
1766    //           "custom": 2
1767    //         },
1768    "line_height": "standard",
1769    // Activate the python virtual environment, if one is found, in the
1770    // terminal's working directory (as resolved by the working_directory
1771    // setting). Set this to "off" to disable this behavior.
1772    "detect_venv": {
1773      "on": {
1774        // Default directories to search for virtual environments, relative
1775        // to the current working directory. We recommend overriding this
1776        // in your project's settings, rather than globally.
1777        "directories": [".env", "env", ".venv", "venv"],
1778        // Can also be `csh`, `fish`, `nushell` and `power_shell`
1779        "activate_script": "default",
1780        // Preferred Conda manager to use when activating Conda environments.
1781        // Values: "auto", "conda", "mamba", "micromamba"
1782        // Default: "auto"
1783        "conda_manager": "auto",
1784      },
1785    },
1786    "toolbar": {
1787      // Whether to display the terminal title in its toolbar's breadcrumbs.
1788      // Only shown if the terminal title is not empty.
1789      //
1790      // The shell running in the terminal needs to be configured to emit the title.
1791      // Example: `echo -e "\e]2;New Title\007";`
1792      "breadcrumbs": false,
1793    },
1794    // Scrollbar-related settings
1795    "scrollbar": {
1796      // When to show the scrollbar in the terminal.
1797      // This setting can take five values:
1798      //
1799      // 1. null (default): Inherit editor settings
1800      // 2. Show the scrollbar if there's important information or
1801      //    follow the system's configured behavior (default):
1802      //   "auto"
1803      // 3. Match the system's configured behavior:
1804      //    "system"
1805      // 4. Always show the scrollbar:
1806      //    "always"
1807      // 5. Never show the scrollbar:
1808      //    "never"
1809      "show": null,
1810    },
1811    // Set the terminal's font size. If this option is not included,
1812    // the terminal will default to matching the buffer's font size.
1813    // "font_size": 15,
1814    // Set the terminal's font family. If this option is not included,
1815    // the terminal will default to matching the buffer's font family.
1816    // "font_family": ".ZedMono",
1817    // Set the terminal's font fallbacks. If this option is not included,
1818    // the terminal will default to matching the buffer's font fallbacks.
1819    // This will be merged with the platform's default font fallbacks
1820    // "font_fallbacks": ["FiraCode Nerd Fonts"],
1821    // The weight of the editor font in standard CSS units from 100 to 900.
1822    "font_weight": 400,
1823    // Sets the maximum number of lines in the terminal's scrollback buffer.
1824    // Default: 10_000, maximum: 100_000 (all bigger values set will be treated as 100_000), 0 disables the scrolling.
1825    // Existing terminals will not pick up this change until they are recreated.
1826    "max_scroll_history_lines": 10000,
1827    // The multiplier for scrolling speed in the terminal.
1828    "scroll_multiplier": 1.0,
1829    // The minimum APCA perceptual contrast between foreground and background colors.
1830    // APCA (Accessible Perceptual Contrast Algorithm) is more accurate than WCAG 2.x,
1831    // especially for dark mode. Values range from 0 to 106.
1832    //
1833    // Based on APCA Readability Criterion (ARC) Bronze Simple Mode:
1834    // https://readtech.org/ARC/tests/bronze-simple-mode/
1835    // - 0: No contrast adjustment
1836    // - 45: Minimum for large fluent text (36px+)
1837    // - 60: Minimum for other content text
1838    // - 75: Minimum for body text
1839    // - 90: Preferred for body text
1840    //
1841    // Most terminal themes have APCA values of 40-70.
1842    // A value of 45 preserves colorful themes while ensuring legibility.
1843    "minimum_contrast": 45,
1844    // Regexes used to identify paths for hyperlink navigation. Supports optional named capture
1845    // groups `path`, `line`, `column`, and `link`. If none of these are present, the entire match
1846    // is the hyperlink target. If `path` is present, it is the hyperlink target, along with `line`
1847    // and `column` if present. `link` may be used to customize what text in terminal is part of the
1848    // hyperlink. If `link` is not present, the text of the entire match is used. If `line` and
1849    // `column` are not present, the default built-in line and column suffix processing is used
1850    // which parses `line:column` and `(line,column)` variants. The default value handles Python
1851    // diagnostics and common path, line, column syntaxes. This can be extended or replaced to
1852    // handle specific scenarios. For example, to enable support for hyperlinking paths which
1853    // contain spaces in rust output,
1854    //
1855    // [
1856    //   "\\s+(-->|:::|at) (?<link>(?<path>.+?))(:$|$)",
1857    //   "\\s+(Compiling|Checking|Documenting) [^(]+\\((?<link>(?<path>.+))\\)"
1858    // ],
1859    //
1860    // could be used. Processing stops at the first regex with a match, even if no link is
1861    // produced which is the case when the cursor is not over the hyperlinked text. For best
1862    // performance it is recommended to order regexes from most common to least common. For
1863    // readability and documentation, each regex may be an array of strings which are collected
1864    // into one multi-line regex string for use in terminal path hyperlink detection.
1865    "path_hyperlink_regexes": [
1866      // Python-style diagnostics
1867      "File \"(?<path>[^\"]+)\", line (?<line>[0-9]+)",
1868      // Common path syntax with optional line, column, description, trailing punctuation, or
1869      // surrounding symbols or quotes
1870      [
1871        "(?x)",
1872        "(?<path>",
1873        "    (",
1874        "        # multi-char path: first char (not opening delimiter, space, or box drawing char)",
1875        "        [^({\\[<\"'`\\ \\u2500-\\u257F]",
1876        "        # middle chars: non-space, and colon/paren only if not followed by digit/paren/space",
1877        "        ([^\\ :(]|[:(][^0-9()\\ ])*",
1878        "        # last char: not closing delimiter or colon",
1879        "        [^()}\\]>\"'`.,;:\\ ]",
1880        "    |",
1881        "        # single-char path: not delimiter, punctuation, space, or box drawing char",
1882        "        [^(){}\\[\\]<>\"'`.,;:\\ \\u2500-\\u257F]",
1883        "    )",
1884        "    # optional line/column suffix (included in path for PathWithPosition::parse_str)",
1885        "    (:+[0-9]+(:[0-9]+)?|:?\\([0-9]+([,:]?[0-9]+)?\\))?",
1886        ")",
1887      ],
1888    ],
1889    // Timeout for hover and Cmd-click path hyperlink discovery in milliseconds. Specifying a
1890    // timeout of `0` will disable path hyperlinking in terminal.
1891    "path_hyperlink_timeout_ms": 1,
1892    // Whether to show a badge on the terminal panel icon with the count of open terminals.
1893    "show_count_badge": false,
1894  },
1895  "code_actions_on_format": {},
1896  // Settings related to running tasks.
1897  "tasks": {
1898    "variables": {},
1899    "enabled": true,
1900    // Use LSP tasks over Zed language extension ones.
1901    // If no LSP tasks are returned due to error/timeout or regular execution,
1902    // Zed language extension tasks will be used instead.
1903    //
1904    // Other Zed tasks will still be shown:
1905    // * Zed task from either of the task config file
1906    // * Zed task from history (e.g. one-off task was spawned before)
1907    //
1908    // Default: true
1909    "prefer_lsp": true,
1910  },
1911  // An object whose keys are language names, and whose values
1912  // are arrays of filenames or extensions of files that should
1913  // use those languages.
1914  //
1915  // For example, to treat files like `foo.notjs` as JavaScript,
1916  // and `Embargo.lock` as TOML:
1917  //
1918  // {
1919  //   "JavaScript": ["notjs"],
1920  //   "TOML": ["Embargo.lock"]
1921  // }
1922  //
1923  "file_types": {
1924    "JSONC": [
1925      "**/.zed/*.json",
1926      "**/.vscode/**/*.json",
1927      "**/{zed,Zed}/{settings,keymap,tasks,debug}.json",
1928      "tsconfig*.json",
1929    ],
1930    "Markdown": [".rules", ".cursorrules", ".windsurfrules", ".clinerules"],
1931    "Shell Script": [".env.*"],
1932  },
1933  // Settings for which version of Node.js and NPM to use when installing
1934  // language servers and Copilot.
1935  //
1936  // Note: changing this setting currently requires restarting Zed.
1937  "node": {
1938    // By default, Zed will look for `node` and `npm` on your `$PATH`, and use the
1939    // existing executables if their version is recent enough. Set this to `true`
1940    // to prevent this, and force Zed to always download and install its own
1941    // version of Node.
1942    "ignore_system_version": false,
1943    // You can also specify alternative paths to Node and NPM. If you specify
1944    // `path`, but not `npm_path`, Zed will assume that `npm` is located at
1945    // `${path}/../npm`.
1946    "path": null,
1947    "npm_path": null,
1948  },
1949  // The extensions that Zed should automatically install on startup.
1950  //
1951  // If you don't want any of these extensions, add this field to your settings
1952  // and change the value to `false`.
1953  "auto_install_extensions": {
1954    "html": true,
1955  },
1956  // The capabilities granted to extensions.
1957  //
1958  // This list can be customized to restrict what extensions are able to do.
1959  "granted_extension_capabilities": [
1960    { "kind": "process:exec", "command": "*", "args": ["**"] },
1961    { "kind": "download_file", "host": "*", "path": ["**"] },
1962    { "kind": "npm:install", "package": "*" },
1963  ],
1964  // Controls how completions are processed for this language.
1965  "completions": {
1966    // Controls how words are completed.
1967    // For large documents, not all words may be fetched for completion.
1968    //
1969    // May take 3 values:
1970    // 1. "enabled"
1971    //   Always fetch document's words for completions along with LSP completions.
1972    // 2. "fallback"
1973    //   Only if LSP response errors or times out, use document's words to show completions.
1974    // 3. "disabled"
1975    //   Never fetch or complete document's words for completions.
1976    //   (Word-based completions can still be queried via a separate action)
1977    //
1978    // Default: fallback
1979    "words": "fallback",
1980    // Minimum number of characters required to automatically trigger word-based completions.
1981    // Before that value, it's still possible to trigger the words-based completion manually with the corresponding editor command.
1982    //
1983    // Default: 3
1984    "words_min_length": 3,
1985    // Whether to fetch LSP completions or not.
1986    //
1987    // Default: true
1988    "lsp": true,
1989    // When fetching LSP completions, determines how long to wait for a response of a particular server.
1990    // When set to 0, waits indefinitely.
1991    //
1992    // Default: 0
1993    "lsp_fetch_timeout_ms": 0,
1994    // Controls what range to replace when accepting LSP completions.
1995    //
1996    // When LSP servers give an `InsertReplaceEdit` completion, they provides two ranges: `insert` and `replace`. Usually, `insert`
1997    // contains the word prefix before your cursor and `replace` contains the whole word.
1998    //
1999    // Effectively, this setting just changes whether Zed will use the received range for `insert` or `replace`, so the results may
2000    // differ depending on the underlying LSP server.
2001    //
2002    // Possible values:
2003    // 1. "insert"
2004    //   Replaces text before the cursor, using the `insert` range described in the LSP specification.
2005    // 2. "replace"
2006    //   Replaces text before and after the cursor, using the `replace` range described in the LSP specification.
2007    // 3. "replace_subsequence"
2008    //   Behaves like `"replace"` if the text that would be replaced is a subsequence of the completion text,
2009    //   and like `"insert"` otherwise.
2010    // 4. "replace_suffix"
2011    //   Behaves like `"replace"` if the text after the cursor is a suffix of the completion, and like
2012    //   `"insert"` otherwise.
2013    "lsp_insert_mode": "replace_suffix",
2014  },
2015  // Different settings for specific languages.
2016  "languages": {
2017    "Astro": {
2018      "language_servers": ["astro-language-server", "..."],
2019      "prettier": {
2020        "allowed": true,
2021        "plugins": ["prettier-plugin-astro"],
2022      },
2023    },
2024    "Blade": {
2025      "prettier": {
2026        "allowed": true,
2027      },
2028    },
2029    "C": {
2030      "format_on_save": "off",
2031      "use_on_type_format": false,
2032      "prettier": {
2033        "allowed": false,
2034      },
2035    },
2036    "C++": {
2037      "format_on_save": "off",
2038      "use_on_type_format": false,
2039      "prettier": {
2040        "allowed": false,
2041      },
2042    },
2043    "CSharp": {
2044      "language_servers": ["roslyn", "!omnisharp", "..."],
2045    },
2046    "CSS": {
2047      "prettier": {
2048        "allowed": true,
2049      },
2050    },
2051    "Dart": {
2052      "tab_size": 2,
2053    },
2054    "Diff": {
2055      "show_edit_predictions": false,
2056      "remove_trailing_whitespace_on_save": false,
2057      "ensure_final_newline_on_save": false,
2058    },
2059    "EEx": {
2060      "language_servers": ["elixir-ls", "!expert", "!next-ls", "!lexical", "..."],
2061    },
2062    "Elixir": {
2063      "language_servers": ["elixir-ls", "!expert", "!next-ls", "!lexical", "!emmet-language-server", "..."],
2064    },
2065    "Elm": {
2066      "tab_size": 4,
2067    },
2068    "Erlang": {
2069      "language_servers": ["erlang-ls", "!elp", "..."],
2070    },
2071    "Git Commit": {
2072      "allow_rewrap": "anywhere",
2073      "soft_wrap": "editor_width",
2074      "preferred_line_length": 72,
2075    },
2076    "Go": {
2077      "hard_tabs": true,
2078      "code_actions_on_format": {
2079        "source.organizeImports": true,
2080      },
2081      "debuggers": ["Delve"],
2082    },
2083    "GraphQL": {
2084      "prettier": {
2085        "allowed": true,
2086      },
2087    },
2088    "HEEx": {
2089      "language_servers": ["elixir-ls", "!expert", "!next-ls", "!lexical", "..."],
2090    },
2091    "HTML": {
2092      "prettier": {
2093        "allowed": true,
2094      },
2095    },
2096    "HTML+ERB": {
2097      "language_servers": ["herb", "!ruby-lsp", "..."],
2098    },
2099    "Java": {
2100      "prettier": {
2101        "allowed": true,
2102        "plugins": ["prettier-plugin-java"],
2103      },
2104    },
2105    "JavaScript": {
2106      "language_servers": ["!typescript-language-server", "vtsls", "..."],
2107      "prettier": {
2108        "allowed": true,
2109      },
2110    },
2111    "JSON": {
2112      "prettier": {
2113        "allowed": true,
2114      },
2115    },
2116    "JSONC": {
2117      "prettier": {
2118        "allowed": true,
2119      },
2120    },
2121    "JS+ERB": {
2122      "language_servers": ["!ruby-lsp", "..."],
2123    },
2124    "Kotlin": {
2125      "language_servers": ["!kotlin-language-server", "kotlin-lsp", "..."],
2126    },
2127    "LaTeX": {
2128      "formatter": "language_server",
2129      "language_servers": ["texlab", "..."],
2130      "prettier": {
2131        "allowed": true,
2132        "plugins": ["prettier-plugin-latex"],
2133      },
2134    },
2135    "Markdown": {
2136      "format_on_save": "off",
2137      "use_on_type_format": false,
2138      "remove_trailing_whitespace_on_save": false,
2139      "allow_rewrap": "anywhere",
2140      "soft_wrap": "editor_width",
2141      "completions": {
2142        "words": "disabled",
2143      },
2144      "prettier": {
2145        "allowed": true,
2146      },
2147    },
2148    "PHP": {
2149      "language_servers": ["phpactor", "!intelephense", "!phptools", "..."],
2150      "prettier": {
2151        "allowed": true,
2152        "plugins": ["@prettier/plugin-php"],
2153        "parser": "php",
2154      },
2155    },
2156    "Plain Text": {
2157      "allow_rewrap": "anywhere",
2158      "soft_wrap": "editor_width",
2159      "completions": {
2160        "words": "disabled",
2161      },
2162    },
2163    "Proto": {
2164      "language_servers": ["buf", "!protols", "!protobuf-language-server", "..."],
2165    },
2166    "Python": {
2167      "code_actions_on_format": {
2168        "source.organizeImports.ruff": true,
2169      },
2170      "formatter": {
2171        "language_server": {
2172          "name": "ruff",
2173        },
2174      },
2175      "debuggers": ["Debugpy"],
2176      "language_servers": ["basedpyright", "ruff", "!ty", "!pyrefly", "!pyright", "!pylsp", "..."],
2177    },
2178    "Ruby": {
2179      "language_servers": ["solargraph", "!ruby-lsp", "!rubocop", "!sorbet", "!steep", "!kanayago", "..."],
2180    },
2181    "Rust": {
2182      "debuggers": ["CodeLLDB"],
2183    },
2184    "SCSS": {
2185      "prettier": {
2186        "allowed": true,
2187      },
2188    },
2189    "Starlark": {
2190      "language_servers": ["starpls", "!buck2-lsp", "!tilt", "..."],
2191    },
2192    "Svelte": {
2193      "language_servers": ["svelte-language-server", "..."],
2194      "prettier": {
2195        "allowed": true,
2196        "plugins": ["prettier-plugin-svelte"],
2197      },
2198    },
2199    "TSX": {
2200      "language_servers": ["!typescript-language-server", "vtsls", "..."],
2201      "prettier": {
2202        "allowed": true,
2203      },
2204    },
2205    "Twig": {
2206      "prettier": {
2207        "allowed": true,
2208      },
2209    },
2210    "TypeScript": {
2211      "language_servers": ["!typescript-language-server", "vtsls", "..."],
2212      "prettier": {
2213        "allowed": true,
2214      },
2215    },
2216    "SystemVerilog": {
2217      "format_on_save": "off",
2218      "language_servers": ["!slang", "..."],
2219      "use_on_type_format": false,
2220    },
2221    "Vue.js": {
2222      "language_servers": ["vue-language-server", "vtsls", "..."],
2223      "prettier": {
2224        "allowed": true,
2225      },
2226    },
2227    "XML": {
2228      "prettier": {
2229        "allowed": true,
2230        "plugins": ["@prettier/plugin-xml"],
2231      },
2232    },
2233    "YAML": {
2234      "prettier": {
2235        "allowed": true,
2236      },
2237    },
2238    "YAML+ERB": {
2239      "language_servers": ["!ruby-lsp", "..."],
2240    },
2241    "Zig": {
2242      "language_servers": ["zls", "..."],
2243    },
2244  },
2245  // Different settings for specific language models.
2246  "language_models": {
2247    "anthropic": {
2248      "api_url": "https://api.anthropic.com",
2249    },
2250    "bedrock": {},
2251    "google": {
2252      "api_url": "https://generativelanguage.googleapis.com",
2253    },
2254    "ollama": {
2255      "api_url": "http://localhost:11434",
2256    },
2257    "openai": {
2258      "api_url": "https://api.openai.com/v1",
2259    },
2260    "openai_compatible": {},
2261    "opencode": {
2262      "api_url": "https://opencode.ai/zen",
2263    },
2264    "open_router": {
2265      "api_url": "https://openrouter.ai/api/v1",
2266    },
2267    "lmstudio": {
2268      "api_url": "http://localhost:1234/api/v0",
2269    },
2270    "deepseek": {
2271      "api_url": "https://api.deepseek.com/v1",
2272    },
2273    "mistral": {
2274      "api_url": "https://api.mistral.ai/v1",
2275    },
2276    "vercel": {
2277      "api_url": "https://api.v0.dev/v1",
2278    },
2279    "vercel_ai_gateway": {
2280      "api_url": "https://ai-gateway.vercel.sh/v1",
2281    },
2282    "x_ai": {
2283      "api_url": "https://api.x.ai/v1",
2284    },
2285    "zed.dev": {},
2286  },
2287  "session": {
2288    // Whether or not to restore unsaved buffers on restart.
2289    //
2290    // If this is true, user won't be prompted whether to save/discard
2291    // dirty files when closing the application.
2292    //
2293    // Default: true
2294    "restore_unsaved_buffers": true,
2295    // Whether or not to skip worktree trust checks.
2296    // When trusted, project settings are synchronized automatically,
2297    // language and MCP servers are downloaded and started automatically.
2298    //
2299    // Default: false
2300    "trust_all_worktrees": false,
2301  },
2302  // Zed's Prettier integration settings.
2303  // Allows to enable/disable formatting with Prettier
2304  // and configure default Prettier, used when no project-level Prettier installation is found.
2305  "prettier": {
2306    // Enables or disables formatting with Prettier for any given language.
2307    "allowed": false,
2308    // Forces Prettier integration to use a specific parser name when formatting files with the language.
2309    "plugins": [],
2310    // Default Prettier options, in the format as in package.json section for Prettier.
2311    // If project installs Prettier via its package.json, these options will be ignored.
2312    // "trailingComma": "es5",
2313    // "tabWidth": 4,
2314    // "semi": false,
2315    // "singleQuote": true
2316    // Forces Prettier integration to use a specific parser name when formatting files with the language
2317    // when set to a non-empty string.
2318    "parser": "",
2319  },
2320  // Settings for auto-closing of JSX tags.
2321  "jsx_tag_auto_close": {
2322    "enabled": true,
2323  },
2324  // LSP Specific settings.
2325  "lsp": {
2326    // Specify the LSP name as a key here.
2327    // "rust-analyzer": {
2328    //     // A special flag for rust-analyzer integration, to use server-provided tasks
2329    //     enable_lsp_tasks": true,
2330    //     // These initialization options are merged into Zed's defaults
2331    //     "initialization_options": {
2332    //         "check": {
2333    //             "command": "clippy" // rust-analyzer.check.command (default: "check")
2334    //         }
2335    //     }
2336    // }
2337  },
2338  // DAP Specific settings.
2339  "dap": {
2340    // Specify the DAP name as a key here.
2341    "CodeLLDB": {
2342      "env": {
2343        "RUST_LOG": "info",
2344      },
2345    },
2346  },
2347  // Common language server settings.
2348  "global_lsp_settings": {
2349    // Whether to show the LSP servers button in the status bar.
2350    "button": true,
2351    // The maximum amount of time to wait for responses from language servers, in seconds.
2352    // A value of 0 will result in no timeout being applied.
2353    //
2354    // Default: 120
2355    "request_timeout": 120,
2356    "notifications": {
2357      // Timeout in milliseconds for automatically dismissing language server notifications.
2358      // Set to 0 to disable auto-dismiss.
2359      "dismiss_timeout_ms": 5000,
2360    },
2361    // Rules for highlighting semantic tokens. User-defined rules are prepended to the default
2362    // rules (viewable via "Show Default Semantic Token Rules"), so they take precedence.
2363    //
2364    // Each `rule` has the following properties:
2365    // - `token_type`: The LSP semantic token type to customize. If omitted, the rule matches all token types.
2366    // - `token_modifiers`: A list of LSP semantic token modifiers to match. All modifiers must be present
2367    //    to match.
2368    // - `style`: A list of styles from the current syntax theme to use. The first style found is used. Any
2369    //    settings below override that style.
2370    // - `foreground_color`: The foreground color to use for the token type, in hex format (e.g., "#ff0000").
2371    // - `background_color`: The background color to use for the token type, in hex format.
2372    // - `underline`: A boolean or color to underline with, in hex format. If `true`, then the token will be underlined with the text color.
2373    // - `strikethrough`: A boolean or color to strikethrough with, in hex format. If `true`, then the token have a strikethrough with the text color.
2374    // - `font_weight`: One of "normal", "bold".
2375    // - `font_style`: One of "normal", "italic".
2376    //
2377    // The first matching rule for a token is applied. Because user-defined rules are prepended to the
2378    // default rules, a token can be entirely disabled by adding an empty rule that matches it.
2379    //
2380    // Example: Highlight unresolved references in red and bold:
2381    // "semantic_token_rules": [
2382    //   {
2383    //     "token_type": "unresolvedReference",
2384    //     "foreground_color": "#c93f3f",
2385    //     "font_weight": "bold"
2386    //   }
2387    // ]
2388    //
2389    // Default rules are viewable via the "zed: show default semantic token rules" action.
2390    "semantic_token_rules": [],
2391  },
2392  // Jupyter settings
2393  "jupyter": {
2394    "enabled": true,
2395    "kernel_selections": {},
2396    // Specify the language name as the key and the kernel name as the value.
2397    // "kernel_selections": {
2398    //    "python": "conda-base"
2399    //    "typescript": "deno"
2400    // }
2401  },
2402  // REPL settings.
2403  "repl": {
2404    // Maximum number of columns to keep in REPL's scrollback buffer.
2405    // Clamped with [20, 512] range.
2406    "max_columns": 128,
2407    // Maximum number of lines to keep in REPL's scrollback buffer.
2408    // Clamped with [4, 256] range.
2409    "max_lines": 32,
2410    // Maximum number of lines of output to display before scrolling.
2411    // Set to 0 to disable output height limits.
2412    "output_max_height_lines": 0,
2413    // Maximum number of columns of output to display before scaling images.
2414    // Set to 0 to disable output width limits.
2415    "output_max_width_columns": 0,
2416  },
2417  // Vim settings
2418  "vim": {
2419    "default_mode": "normal",
2420    "toggle_relative_line_numbers": false,
2421    "use_system_clipboard": "always",
2422    "use_smartcase_find": false,
2423    "use_regex_search": true,
2424    "gdefault": false,
2425    "highlight_on_yank_duration": 200,
2426    "custom_digraphs": {},
2427    // Cursor shape for each mode.
2428    // The shape can be one of the following: "block", "bar", "underline", "hollow".
2429    "cursor_shape": {
2430      "normal": "block",
2431      "replace": "underline",
2432      "visual": "block",
2433      // Set to "inherit" to use the editor's cursor_shape.
2434      "insert": "inherit",
2435    },
2436  },
2437  // Which-key popup settings
2438  "which_key": {
2439    // Whether to show the which-key popup when holding down key combinations.
2440    "enabled": false,
2441    // Delay in milliseconds before showing the which-key popup.
2442    "delay_ms": 1000,
2443  },
2444  // The server to connect to. If the environment variable
2445  // ZED_SERVER_URL is set, it will override this setting.
2446  "server_url": "https://zed.dev",
2447  // Settings overrides to use when using Zed Preview.
2448  // Mostly useful for developers who are managing multiple instances of Zed.
2449  "preview": {
2450    // "theme": "Andromeda"
2451  },
2452  // Settings overrides to use when using Zed Nightly.
2453  // Mostly useful for developers who are managing multiple instances of Zed.
2454  "nightly": {
2455    // "theme": "Andromeda"
2456  },
2457  // Settings overrides to use when using Zed Stable.
2458  // Mostly useful for developers who are managing multiple instances of Zed.
2459  "stable": {
2460    // "theme": "Andromeda"
2461  },
2462  // Settings overrides to use when using Zed Dev.
2463  // Mostly useful for developers who are managing multiple instances of Zed.
2464  "dev": {
2465    // "theme": "Andromeda"
2466  },
2467  // Settings overrides to use when using Linux.
2468  "linux": {},
2469  // Settings overrides to use when using macOS.
2470  "macos": {},
2471  // Settings overrides to use when using Windows.
2472  "windows": {
2473    "languages": {
2474      "PHP": {
2475        "language_servers": ["intelephense", "!phpactor", "!phptools", "..."],
2476      },
2477    },
2478  },
2479  // Whether to show full labels in line indicator or short ones
2480  //
2481  // Values:
2482  //   - `short`: "2 s, 15 l, 32 c"
2483  //   - `long`: "2 selections, 15 lines, 32 characters"
2484  // Default: long
2485  "line_indicator_format": "long",
2486  // Set a proxy to use. The proxy protocol is specified by the URI scheme.
2487  //
2488  // Supported URI scheme: `http`, `https`, `socks4`, `socks4a`, `socks5`,
2489  // `socks5h`. `http` will be used when no scheme is specified.
2490  //
2491  // By default no proxy will be used, or Zed will try get proxy settings from
2492  // environment variables. If certain hosts should not be proxied,
2493  // set the `no_proxy` environment variable and provide a comma-separated list.
2494  //
2495  // Examples:
2496  //   - "proxy": "socks5h://localhost:10808"
2497  //   - "proxy": "http://127.0.0.1:10809"
2498  "proxy": "",
2499  // Set to configure aliases for the command palette.
2500  // When typing a query which is a key of this object, the value will be used instead.
2501  //
2502  // Examples:
2503  // {
2504  //   "W": "workspace::Save"
2505  // }
2506  "command_aliases": {},
2507  // ssh_connections is an array of ssh connections.
2508  // You can configure these from `project: Open Remote` in the command palette.
2509  // Zed's ssh support will pull configuration from your ~/.ssh too.
2510  // Examples:
2511  // [
2512  //   {
2513  //     "host": "example-box",
2514  //     // "port": 22, "username": "test", "args": ["-i", "/home/user/.ssh/id_rsa"]
2515  //     "projects": [
2516  //       {
2517  //         "paths": ["/home/user/code/zed"]
2518  //       }
2519  //     ]
2520  //   }
2521  // ]
2522  "ssh_connections": [],
2523  // Whether to read ~/.ssh/config for ssh connection sources.
2524  "read_ssh_config": true,
2525  // Default timeout in seconds for all context server tool calls.
2526  // Individual servers can override this in their configuration.
2527  // Examples:
2528  // "context_servers": {
2529  //   "my-stdio-server": {
2530  //     "command": "/path/to/server",
2531  //     "timeout": 120  // Override: 2 minutes for this server
2532  //   },
2533  // }
2534  // Default: 60
2535  "context_server_timeout": 60,
2536  // Configures context servers for use by the agent.
2537  "context_servers": {},
2538  // Configures agent servers available in the agent panel.
2539  "agent_servers": {},
2540  "debugger": {
2541    "stepping_granularity": "line",
2542    "save_breakpoints": true,
2543    "timeout": 2000,
2544    "dock": "bottom",
2545    "log_dap_communications": true,
2546    "format_dap_log_messages": true,
2547    "button": true,
2548  },
2549  // Configures any number of settings profiles that are temporarily applied
2550  // when selected from `settings profile selector: toggle`.
2551  //
2552  // Each profile has an optional `base` ("user" or "default") and a `settings`
2553  // object. When `base` is "user" (the default), the profile applies on top of
2554  // your user settings. When `base` is "default", user settings are ignored and
2555  // the profile applies on top of Zed's defaults.
2556  //
2557  // Examples:
2558  // "profiles": {
2559  //   "Presenting": {
2560  //     "base": "default",
2561  //     "settings": {
2562  //       "agent_ui_font_size": 20.0,
2563  //       "buffer_font_size": 20.0,
2564  //       "theme": "One Light",
2565  //       "ui_font_size": 20.0
2566  //     }
2567  //   },
2568  //   "Python (ty)": {
2569  //     "settings": {
2570  //       "languages": {
2571  //         "Python": {
2572  //           "language_servers": ["ty"]
2573  //         }
2574  //       }
2575  //     }
2576  //   }
2577  // }
2578  "profiles": {},
2579
2580  // A map of log scopes to the desired log level.
2581  // Useful for filtering out noisy logs or enabling more verbose logging.
2582  //
2583  // Example: {"log": {"client": "warn"}}
2584  "log": {},
2585}