Created
May 7, 2026 07:23
-
-
Save waiyanwh/e74091be306abf23394485a2a311e8dd to your computer and use it in GitHub Desktop.
Clean VS Code-inspired Zed settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "icon_theme": "Zed (Default)", | |
| "cli_default_open_behavior": "new_window", | |
| "terminal": { | |
| "dock": "bottom", | |
| "default_height": 480, | |
| "font_size": 16.0, | |
| "font_family": "JetBrainsMono Nerd Font" | |
| }, | |
| "project_panel": { | |
| "dock": "left", | |
| "default_width": 200, | |
| "auto_fold_dirs": false, | |
| "auto_reveal_entries": true, | |
| "indent_size": 14, | |
| "scrollbar": { | |
| "show": "auto", | |
| "horizontal_scroll": true | |
| } | |
| }, | |
| "buffer_font_family": "JetBrainsMono Nerd Font", | |
| "ensure_final_newline_on_save": true, | |
| "base_keymap": "VSCode", | |
| "ui_font_size": 19, | |
| "agent_ui_font_size": 20, | |
| "agent_buffer_font_size": 16, | |
| "buffer_font_size": 17, | |
| "theme": { | |
| "mode": "system", | |
| "light": "One Light", | |
| "dark": "VSCode Modern Dark" | |
| }, | |
| "theme_overrides": { | |
| "VSCode Modern Dark": { | |
| "background": "#252526", | |
| "editor.background": "#1E1E1E", | |
| "surface.background": "#252526", | |
| "panel.background": "#252526", | |
| "elevated_surface.background": "#252526", | |
| "title_bar.background": "#3C3C3C", | |
| "title_bar.inactive_background": "#2D2D30", | |
| "toolbar.background": "#2D2D30", | |
| "tab_bar.background": "#252526", | |
| "tab.active_background": "#1E1E1E", | |
| "tab.inactive_background": "#2D2D30", | |
| "status_bar.background": "#007ACC", | |
| "panel.focused_border": "#6A6A6A", | |
| "pane.focused_border": "#5A5A5A", | |
| "pane_group.border": "#3F3F46", | |
| "border": "#3F3F46", | |
| "border.focused": "#007ACC", | |
| "border.selected": "#007ACC", | |
| "border.variant": "#565656", | |
| "text": "#E6E6E6", | |
| "text.accent": "#75BEFF", | |
| "text.muted": "#D0D0D0", | |
| "text.placeholder": "#B8B8B8", | |
| "icon": "#D8D8D8", | |
| "icon.muted": "#C0C0C0", | |
| "icon.accent": "#75BEFF", | |
| "editor.foreground": "#D4D4D4", | |
| "editor.line_number": "#858585", | |
| "editor.active_line_number": "#C6C6C6", | |
| "editor.active_line.background": "#2A2A2A", | |
| "editor.gutter.background": "#1E1E1E", | |
| "editor.indent_guide": "#2D2D30", | |
| "editor.indent_guide_active": "#3C3C3C", | |
| "editor.document_highlight.bracket_background": "#333333", | |
| "editor.document_highlight.read_background": "#2A2A2A", | |
| "editor.document_highlight.write_background": "#323232", | |
| "element.background": "#3C3C3C", | |
| "element.hover": "#4A4A4A", | |
| "element.active": "#505050", | |
| "element.selected": "#0E639C", | |
| "ghost_element.hover": "#3A3D3E", | |
| "ghost_element.active": "#454545", | |
| "ghost_element.selected": "#094771", | |
| "drop_target.background": "#264F7840", | |
| "scrollbar.thumb.background": "#424242", | |
| "scrollbar.thumb.hover_background": "#4E4E4E", | |
| "terminal.background": "#1E1E1E", | |
| "terminal.foreground": "#D4D4D4", | |
| "terminal.ansi.black": "#1E1E1E", | |
| "terminal.ansi.red": "#C58686", | |
| "terminal.ansi.green": "#9CDC9C", | |
| "terminal.ansi.yellow": "#DCDCAA", | |
| "terminal.ansi.blue": "#8AB4F8", | |
| "terminal.ansi.magenta": "#C586C0", | |
| "terminal.ansi.cyan": "#8EC7C0", | |
| "terminal.ansi.white": "#D4D4D4", | |
| "terminal.ansi.bright_black": "#6A6A6A", | |
| "terminal.ansi.bright_red": "#D7A0A0", | |
| "terminal.ansi.bright_green": "#B5E3B5", | |
| "terminal.ansi.bright_yellow": "#E3D9A6", | |
| "terminal.ansi.bright_blue": "#A7C7FA", | |
| "terminal.ansi.bright_magenta": "#D6A5D2", | |
| "terminal.ansi.bright_cyan": "#A7D8D3", | |
| "terminal.ansi.bright_white": "#FFFFFF", | |
| "syntax": { | |
| "comment": { | |
| "color": "#6A9955" | |
| }, | |
| "constant": { | |
| "color": "#B5CEA8" | |
| }, | |
| "function": { | |
| "color": "#DCDCAA" | |
| }, | |
| "keyword": { | |
| "color": "#C586C0" | |
| }, | |
| "number": { | |
| "color": "#B5CEA8" | |
| }, | |
| "operator": { | |
| "color": "#D4D4D4" | |
| }, | |
| "property": { | |
| "color": "#9CDCFE" | |
| }, | |
| "punctuation": { | |
| "color": "#D4D4D4" | |
| }, | |
| "string": { | |
| "color": "#CE9178" | |
| }, | |
| "type": { | |
| "color": "#4EC9B0" | |
| }, | |
| "variable": { | |
| "color": "#D4D4D4" | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment