Created
February 3, 2026 20:06
-
-
Save vadimpiven/b2d1a338c917487fb2af4c0e40422d1a 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
Show hidden characters
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run the `zed: Open Default Settings` command | |
| // from the command palette | |
| { | |
| "agent_servers": { | |
| "claude": {}, | |
| "gemini": {}, | |
| }, | |
| "project_panel": { | |
| "dock": "right", | |
| "entry_spacing": "standard", | |
| "auto_fold_dirs": false, | |
| }, | |
| "agent": { | |
| "dock": "left", | |
| "play_sound_when_agent_done": true, | |
| "enable_feedback": false, | |
| }, | |
| "git_panel": { | |
| "dock": "right", | |
| }, | |
| "outline_panel": { | |
| "dock": "right", | |
| }, | |
| "terminal": { | |
| "dock": "bottom", | |
| "font_family": "MesloLGS Nerd Font Mono", // https://www.nerdfonts.com/font-downloads | |
| "max_scroll_history_lines": 100000, | |
| }, | |
| "debugger": { | |
| "dock": "left", | |
| }, | |
| "features": { | |
| "edit_prediction_provider": "none", | |
| }, | |
| "inlay_hints": { | |
| "enabled": false, | |
| "show_background": true, | |
| "toggle_on_modifiers_press": { | |
| "control": true, | |
| }, | |
| }, | |
| "telemetry": { | |
| "metrics": false, | |
| "diagnostics": true, | |
| }, | |
| "ui_font_family": ".SystemUIFont", | |
| "ui_font_size": 16, | |
| "agent_ui_font_size": 16, | |
| "buffer_font_family": "JetBrains Mono", // https://www.jetbrains.com/lp/mono/ | |
| "buffer_font_size": 14, | |
| "agent_buffer_font_size": 14, | |
| "buffer_font_weight": 380, | |
| "buffer_line_height": { "custom": 1.25 }, | |
| "buffer_font_features": { "calt": false }, | |
| "theme": { | |
| "mode": "system", | |
| "light": "Fleet Light", | |
| "dark": "Fleet Dark", | |
| }, | |
| "icon_theme": "Catppuccin Macchiato", | |
| "auto_install_extensions": { | |
| "fleet-themes": true, | |
| "catppuccin-icons": true, | |
| }, | |
| "base_keymap": "Cursor", | |
| "soft_wrap": "editor_width", | |
| "autosave": "on_focus_change", | |
| "format_on_save": "on", | |
| "calls": { | |
| "mute_on_join": true, | |
| }, | |
| "tab_size": 4, | |
| "languages": { | |
| "JSON": { | |
| "tab_size": 2, | |
| }, | |
| "JSONC": { | |
| "tab_size": 2, | |
| }, | |
| "JavaScript": { | |
| "tab_size": 2, | |
| }, | |
| "TypeScript": { | |
| "tab_size": 2, | |
| }, | |
| "Vue.js": { | |
| "tab_size": 2, | |
| }, | |
| }, | |
| "hard_tabs": false, | |
| "cursor_blink": false, | |
| "current_line_highlight": "gutter", | |
| "colorize_brackets": true, | |
| "indent_guides": { | |
| "background_coloring": "indent_aware", | |
| }, | |
| "minimap": { | |
| "show": "always", | |
| }, | |
| "sticky_scroll": { | |
| "enabled": true, | |
| }, | |
| "seed_search_query_from_cursor": "selection", | |
| "use_smartcase_search": true, | |
| "tabs": { | |
| "git_status": true, | |
| "file_icons": true, | |
| "show_diagnostics": "all", | |
| }, | |
| "journal": { | |
| "hour_format": "hour24", | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment