Last active
November 9, 2025 11:16
-
-
Save keyle/4cd01700135e8fd184f663339541f41e to your computer and use it in GitHub Desktop.
zed config
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
| { | |
| "agent": { | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-4.1" | |
| }, | |
| "inline_assistant_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-4.1" | |
| } | |
| }, | |
| "features": { | |
| "edit_prediction_provider": "none" | |
| }, | |
| "edit_predictions": { | |
| "mode": "eager", | |
| "disabled_globs": [".env", ".zed/*", ".vscode/*", "*.dSYM/*"] | |
| }, | |
| "debugger": { | |
| "dock": "right", | |
| "button": true | |
| }, | |
| "base_keymap": "VSCode", | |
| "theme": "Tomorrow Night Min", | |
| "ui_font_size": 15, | |
| "unstable.ui_density": "default", | |
| "ui_font_family": "Myna", | |
| "buffer_font_size": 20, | |
| "buffer_line_height": "standard", | |
| "buffer_font_family": "Myna", | |
| "terminal": { | |
| "font_family": "Myna", | |
| "font_size": 14 | |
| }, | |
| "vim_mode": false, | |
| "cursor_blink": true, | |
| "cursor_shape": "bar", | |
| "vertical_scroll_margin": 10, | |
| "preferred_line_length": 150, | |
| "show_completions_on_input": false, | |
| "ensure_final_newline_on_save": true, | |
| "use_autoclose": false, | |
| "current_line_highlight": "none", | |
| "indent_guides": { | |
| "enabled": false | |
| }, | |
| "diagnostics": { | |
| "button": true, | |
| "include_warnings": true, | |
| "inline": { | |
| "enabled": true, | |
| "update_debounce_ms": 250, | |
| "padding": 2, | |
| "min_column": 50, | |
| "max_severity": null | |
| } | |
| }, | |
| "extend_comment_on_newline": false, | |
| "scroll_beyond_last_line": "one_page", | |
| "buffer_font_features": { | |
| "calt": true | |
| }, | |
| "collaboration_panel": { | |
| "button": false | |
| }, | |
| "format_on_save": "off", | |
| "gutter": { | |
| "min_line_number_digits": 4, | |
| "breakpoints": true, | |
| "folds": false, | |
| "line_numbers": true | |
| }, | |
| "tabs": { | |
| "git_status": false | |
| }, | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false | |
| }, | |
| "auto_update": false, | |
| "languages": { | |
| "C": { | |
| "tab_size": 8, | |
| "hard_tabs": true | |
| }, | |
| "C++": { | |
| "tab_size": 8, | |
| "hard_tabs": true | |
| }, | |
| "Go": { | |
| "tab_size": 4, | |
| "hard_tabs": true | |
| }, | |
| "JavaScript": { | |
| "tab_size": 4 | |
| }, | |
| "TypeScript": { | |
| "tab_size": 4 | |
| }, | |
| "TSX": { | |
| "tab_size": 4 | |
| }, | |
| "YAML": { | |
| "tab_size": 4 | |
| }, | |
| "JSON": { | |
| "tab_size": 4 | |
| }, | |
| "Python": { | |
| "language_servers": ["!pylsp", "pyright"] | |
| } | |
| }, | |
| "git": { | |
| "inline_blame": { | |
| "enabled": false, | |
| "delay_ms": 2000 | |
| }, | |
| "git_gutter": "tracked_files", | |
| "hunk_style": "unstaged_hollow" | |
| }, | |
| "scrollbar": { | |
| "git_diff": false | |
| }, | |
| "experimental.theme_overrides": { | |
| "players": [ | |
| { | |
| "cursor": "#11ff88", | |
| "selection": "#11ffcd44" | |
| } | |
| ], | |
| "syntax": { | |
| "comment": { | |
| "color": "#974", | |
| // "color": "#999", | |
| // "background_color": "#ffcd1144", | |
| // "background_color": "#ccc", | |
| "font_style": "normal", | |
| "font_weight": 300 | |
| }, | |
| "keyword": { | |
| // "color": "#ffd600", | |
| "color": "#ddd", | |
| "font_style": "italic" | |
| }, | |
| "property": { | |
| "font_style": "normal" | |
| }, | |
| "function": { | |
| "color": "#add", | |
| "font_style": "italic" | |
| }, | |
| "enum": { | |
| "color": "#ddd" | |
| }, | |
| "emphasis": { | |
| "font_style": "normal" | |
| }, | |
| "emphasis.strong": { | |
| "font_style": "normal" | |
| }, | |
| "predictive": { | |
| "font_style": "normal" | |
| }, | |
| "type": { | |
| // "color": "#ffd600", | |
| "font_style": "normal" | |
| }, | |
| "variable": { | |
| "color": "#ffd600" | |
| }, | |
| "tag": { | |
| "font_style": "normal" | |
| }, | |
| "string": { | |
| // "color": "#777", | |
| "font_style": "normal" | |
| // "background_color": "#00009933" | |
| } | |
| }, | |
| // "border": "#888", | |
| // "title_bar.background": "#bbb", | |
| // "editor.background": "#ddd", | |
| // "background": "#ddd", | |
| // "panel.background": "#ccc", | |
| // "editor.gutter.background": "#ddd", | |
| // "tab_bar.background": "#ddd", | |
| // "tab.inactive_background": "#ddd", | |
| // "tab.active_background": "#fff6", | |
| // "status_bar.background": "#ccc", | |
| // "toolbar.background": "#ccc", | |
| // "terminal.background": "#d8d8d8", | |
| // "version_control.added": "#00990055", | |
| // "version_control.modified": "#0000ff55", | |
| // "version_control.deleted": "#990000", | |
| // "scrollbar.thumb.background": "#fff3", | |
| // "scrollbar.thumb.border": "#bbb0", | |
| // "scrollbar.track.background": "#ccc0", | |
| // "scrollbar.track.border": "#FFF1", | |
| //////////////// | |
| // "border": "#888", | |
| // // "title_bar.background": "#bbb", | |
| // "editor.background": "#f2f2f2", | |
| // "editor.gutter.background": "#f2f2f2", | |
| // "background": "#ddd", | |
| // "panel.background": "#eee", | |
| // "tab_bar.background": "#ddd", | |
| // "tab.inactive_background": "#ddd", | |
| // "tab.active_background": "#fff6", | |
| // "status_bar.background": "#ccc", | |
| // "toolbar.background": "#eee", | |
| // "terminal.background": "#d8d8d8", | |
| // "version_control.added": "#00990055", | |
| // "version_control.modified": "#0000ff55", | |
| // "version_control.deleted": "#990000", | |
| // "scrollbar.thumb.background": "#fff3", | |
| // "scrollbar.thumb.border": "#bbb0", | |
| // "scrollbar.track.background": "#ccc0", | |
| // "scrollbar.track.border": "#FFF1" | |
| /////////////////////////////////////// | |
| // "border": "#4949A0", | |
| "title_bar.background": "#000", | |
| // "panel.overlay_background": "#191970", | |
| // "editor.background": "#191970", | |
| // "editor.subheader.background": "#191970", | |
| // "background": "#151560", | |
| // "panel.background": "#191970", | |
| // "editor.gutter.background": "#191970", | |
| // "tab_bar.background": "#19197033", | |
| // "tab.inactive_background": "#191970", | |
| // "tab.active_background": "#191990", | |
| // "status_bar.background": "#191970", | |
| // "toolbar.background": "#191970", | |
| "terminal.background": "#111", | |
| "version_control.added": "#00990088", | |
| "version_control.modified": "#3377aa8", | |
| "version_control.deleted": "#990000" | |
| // "scrollbar.thumb.background": "#fff3", | |
| // "scrollbar.thumb.border": "#bbb0", | |
| // "scrollbar.track.background": "#ccc0", | |
| // "scrollbar.track.border": "#FFF1", | |
| // "element.selected": "#fff1", | |
| // "elevated_surface.background": "#008" | |
| // | |
| // /////////////////////////////////////////// | |
| // | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment