Uncomment default settings values (#34179)

Closes https://github.com/zed-industries/zed/issues/34178

Release Notes:

- N/A

---------

Co-authored-by: Peter Tripp <peter@zed.dev>
This commit is contained in:
Justin Su 2025-07-10 10:41:10 -04:00 committed by GitHub
parent c30e28179a
commit 5f21a9bd32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1157,16 +1157,14 @@
// Control whether the git blame information is shown inline, // Control whether the git blame information is shown inline,
// in the currently focused line. // in the currently focused line.
"inline_blame": { "inline_blame": {
"enabled": true "enabled": true,
// Sets a delay after which the inline blame information is shown. // Sets a delay after which the inline blame information is shown.
// Delay is restarted with every cursor movement. // Delay is restarted with every cursor movement.
// "delay_ms": 600 "delay_ms": 0,
//
// Whether or not to display the git commit summary on the same line. // Whether or not to display the git commit summary on the same line.
// "show_commit_summary": false "show_commit_summary": false,
//
// The minimum column number to show the inline blame information at // The minimum column number to show the inline blame information at
// "min_column": 0 "min_column": 0
}, },
// How git hunks are displayed visually in the editor. // How git hunks are displayed visually in the editor.
// This setting can take two values: // This setting can take two values:
@ -1379,11 +1377,11 @@
// This will be merged with the platform's default font fallbacks // This will be merged with the platform's default font fallbacks
// "font_fallbacks": ["FiraCode Nerd Fonts"], // "font_fallbacks": ["FiraCode Nerd Fonts"],
// The weight of the editor font in standard CSS units from 100 to 900. // The weight of the editor font in standard CSS units from 100 to 900.
// "font_weight": 400 "font_weight": 400,
// Sets the maximum number of lines in the terminal's scrollback buffer. // Sets the maximum number of lines in the terminal's scrollback buffer.
// Default: 10_000, maximum: 100_000 (all bigger values set will be treated as 100_000), 0 disables the scrolling. // Default: 10_000, maximum: 100_000 (all bigger values set will be treated as 100_000), 0 disables the scrolling.
// Existing terminals will not pick up this change until they are recreated. // Existing terminals will not pick up this change until they are recreated.
// "max_scroll_history_lines": 10000, "max_scroll_history_lines": 10000,
// The minimum APCA perceptual contrast between foreground and background colors. // The minimum APCA perceptual contrast between foreground and background colors.
// APCA (Accessible Perceptual Contrast Algorithm) is more accurate than WCAG 2.x, // APCA (Accessible Perceptual Contrast Algorithm) is more accurate than WCAG 2.x,
// especially for dark mode. Values range from 0 to 106. // especially for dark mode. Values range from 0 to 106.