Created
June 3, 2025 06:22
-
-
Save simonpham/4b1a407bd8b793e1a3cb7e7b77a48d95 to your computer and use it in GitHub Desktop.
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
| // 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 `open default settings` command | |
| // from the command palette or from `Zed` application menu. | |
| { | |
| "agent": { | |
| "default_profile": "write", | |
| "model_parameters": [], | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-4.1" | |
| }, | |
| "version": "2" | |
| }, | |
| "icon_theme": "JetBrains Icons Dark", | |
| "edit_predictions": { | |
| "disabled_globs": ["env.*"], | |
| "mode": "subtle", | |
| "copilot": { | |
| "proxy": null, | |
| "proxy_no_verify": null | |
| }, | |
| "enabled_in_text_threads": false | |
| }, | |
| "features": { | |
| "edit_prediction_provider": "supermaven" | |
| }, | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false | |
| }, | |
| "base_keymap": "JetBrains", | |
| "theme": "JetBrains New Dark", | |
| "buffer_font_family": "JetBrains Mono", | |
| "buffer_font_size": 13, | |
| "buffer_font_features": { | |
| "calt": false | |
| }, | |
| "restore_on_startup": "none", | |
| "confirm_quit": true, | |
| "format_on_save": "off", | |
| "autosave": "on_focus_change", | |
| "ensure_final_newline_on_save": false, | |
| "terminal": { | |
| "font_family": "Meslo LG M DZ for Powerline" | |
| }, | |
| "tab_bar": { | |
| "show_nav_history_buttons": false | |
| }, | |
| "tabs": { | |
| "file_icons": true, | |
| "git_status": true, | |
| "show_diagnostics": "errors" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment