default.json

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