Created
October 22, 2025 20:43
-
-
Save bsnux/22e124c88120392532cb101c233f1144 to your computer and use it in GitHub Desktop.
Zed Editor configuratiion
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 | |
| { | |
| "icon_theme": "Catppuccin Mocha", | |
| "auto_update_extensions": { | |
| "powershell": false | |
| }, | |
| "show_edit_predictions": true, | |
| "edit_predictions": { | |
| "mode": "eager" | |
| }, | |
| "restore_on_startup": "none", | |
| "features": { | |
| "edit_prediction_provider": "copilot" | |
| }, | |
| "agent": { | |
| "always_allow_tool_actions": true, | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-4.1" | |
| } | |
| }, | |
| "vim_mode": true, | |
| "telemetry": { | |
| "metrics": false, | |
| "diagnostics": false | |
| }, | |
| "ui_font_size": 19, | |
| "buffer_font_size": 15, | |
| //"buffer_font_family": "JetBrains Mono NL", | |
| "buffer_font_family": "IBM Plex Mono", | |
| "theme": { | |
| "mode": "system", | |
| "light": "Sublime Mariana", | |
| "dark": "One Dark" | |
| }, | |
| "agent_ui_font_size": 18, | |
| "agent_buffer_font_size": 17, | |
| "experimental.theme_overrides": { | |
| //"info.background": "#1E2227ff", | |
| //"info.background": "#635b43", | |
| "info.background": "#4f4936", | |
| "terminal.background": "#292A44", | |
| //"terminal.background": "#5E2750", | |
| //"terminal.background": "#282829", | |
| "syntax": { | |
| "comment": { | |
| "font_style": "italic" | |
| } | |
| } | |
| }, | |
| "git": { | |
| "inline_blame": { | |
| "enabled": false | |
| } | |
| }, | |
| "terminal": { | |
| "dock": "left", | |
| "font_size": 14.5, | |
| "copy_on_select": true, | |
| "font_family": "JetBrains Mono NL" | |
| }, | |
| "soft_wrap": "editor_width", | |
| "wrap_guides": [80], | |
| "buffer_font_features": { | |
| "calt": false | |
| }, | |
| "lsp": { | |
| "deno": { | |
| "settings": { | |
| "deno": { | |
| "enable": true | |
| } | |
| } | |
| } | |
| }, | |
| "languages": { | |
| "TypeScript": { | |
| "prettier": { "allowed": true }, | |
| "tab_size": 4, | |
| "language_servers": [ | |
| "vtsls", | |
| "!deno", | |
| "!typescript-language-server", | |
| "!eslint" | |
| ], | |
| "formatter": "language_server" | |
| } | |
| }, | |
| "file_finder": { | |
| "modal_max_width": "medium" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment