Created
June 26, 2025 13:39
-
-
Save LukeberryPi/f67bd38a0ffe46a6821948b0669f96c3 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
// 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 `zed: open default settings` from the | |
// command palette (cmd-shift-p / ctrl-shift-p) | |
{ | |
"agent": { | |
"default_profile": "write", | |
"model_parameters": [], | |
"default_model": { | |
"provider": "copilot_chat", | |
"model": "gpt-4o" | |
}, | |
"version": "2" | |
}, | |
"icon_theme": "Serendipity Icons", | |
"telemetry": { | |
"diagnostics": false, | |
"metrics": false | |
}, | |
"tabs": { | |
"git_status": true | |
}, | |
"toolbar": { | |
"quick_actions": false, | |
"selections_menu": false, | |
"agent_review": false, | |
"code_actions": false | |
}, | |
"vim_mode": true, | |
"vim": { | |
"use_multiline_find": true, | |
"highlight_on_yank_duration": 400, | |
"use_system_clipboard": "on_yank" | |
}, | |
"autosave": { "after_delay": { "milliseconds": 500 } }, | |
"format_on_save": "prettier", | |
"project_panel": { | |
"dock": "right", | |
"default_width": 400, | |
"entry_spacing": "standard", | |
"indent_size": 16 | |
}, | |
"preview_tabs": { | |
"enabled": false | |
}, | |
"indent_guides": { | |
"enabled": false | |
}, | |
"terminal": { | |
"font_weight": 200 | |
}, | |
"horizontal_scroll_margin": 0, | |
"features": { | |
"edit_prediction_provider": "copilot" | |
}, | |
"completions": { | |
"lsp": true | |
}, | |
"scrollbar": { | |
"axes": { | |
"horizontal": false | |
} | |
}, | |
"cursor_blink": false, | |
"ui_font_family": "JetBrains Mono", | |
"buffer_font_family": "JetBrains Mono", | |
"buffer_font_size": 16, | |
"buffer_font_weight": 300, | |
"buffer_line_height": "comfortable", | |
"theme": { | |
"mode": "system", | |
"light": "One Dark", | |
"dark": "One Dark" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment