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