From 5f21a9bd320d3e489be1c58a0d12a2658685751d Mon Sep 17 00:00:00 2001 From: Justin Su Date: Thu, 10 Jul 2025 10:41:10 -0400 Subject: [PATCH] Uncomment default settings values (#34179) Closes https://github.com/zed-industries/zed/issues/34178 Release Notes: - N/A --------- Co-authored-by: Peter Tripp --- assets/settings/default.json | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 9e487a733d..dc892bd6a3 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -1157,16 +1157,14 @@ // Control whether the git blame information is shown inline, // in the currently focused line. "inline_blame": { - "enabled": true + "enabled": true, // Sets a delay after which the inline blame information is shown. // 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. - // "show_commit_summary": false - // + "show_commit_summary": false, // 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. // This setting can take two values: @@ -1379,11 +1377,11 @@ // This will be merged with the platform's default font fallbacks // "font_fallbacks": ["FiraCode Nerd Fonts"], // 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. // 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. - // "max_scroll_history_lines": 10000, + "max_scroll_history_lines": 10000, // The minimum APCA perceptual contrast between foreground and background colors. // APCA (Accessible Perceptual Contrast Algorithm) is more accurate than WCAG 2.x, // especially for dark mode. Values range from 0 to 106.