Created
November 25, 2025 01:21
-
-
Save DanielSRS/a30845a35aa944544f6c60596c3a16b2 to your computer and use it in GitHub Desktop.
My zed editor settings file
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": { | |
| "model_parameters": [], | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-5.1-codex-mini" | |
| } | |
| }, | |
| "project_panel": { | |
| "indent_size": 16, | |
| "entry_spacing": "standard", | |
| "hide_root": true, | |
| "sticky_scroll": false, | |
| "default_width": 240 | |
| }, | |
| "git_panel": { | |
| "default_width": 240 | |
| }, | |
| "icon_theme": "Material Icon Theme", | |
| "ui_font_size": 14, | |
| "buffer_font_size": 12.0, | |
| "buffer_font_family": "Cascadia Code PL", | |
| "theme": { | |
| "mode": "system", | |
| "light": "DSRS Light", | |
| "dark": "DSRS Dark" | |
| }, | |
| "scrollbar": { | |
| "show": "auto" | |
| }, | |
| "features": { | |
| "edit_prediction_provider": "copilot" | |
| }, | |
| "tabs": { | |
| "close_position": "left", | |
| "file_icons": true, | |
| "git_status": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment