Created
December 15, 2025 16:13
-
-
Save sanbox-irl/86771bdfb143df2eb96acd5f2c181094 to your computer and use it in GitHub Desktop.
zed windows 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
| { | |
| "title_bar": { | |
| "show_menus": false, | |
| "show_branch_icon": true | |
| }, | |
| "telemetry": { | |
| "diagnostics": true, | |
| "metrics": false | |
| }, | |
| "use_system_prompts": false, | |
| "use_system_path_prompts": false, | |
| "disable_ai": true, | |
| "icon_theme": { | |
| "mode": "system", | |
| "light": "Zed (Default)", | |
| "dark": "Zed (Default)" | |
| }, | |
| "features": { | |
| "edit_prediction_provider": "none" | |
| }, | |
| "minimap": { | |
| "show": "auto" | |
| }, | |
| "auto_signature_help": true, | |
| "show_signature_help_after_edits": true, | |
| "base_keymap": "VSCode", | |
| "theme": { | |
| "mode": "system", | |
| "light": "Fleet Light", | |
| "dark": "Ayu Mirage" | |
| }, | |
| "ui_font_size": 18, | |
| "buffer_font_size": 18.0, | |
| "terminal": { | |
| "toolbar": { | |
| "breadcrumbs": false | |
| }, | |
| "font_family": "MesloLGS NF", | |
| "shell": { | |
| "with_arguments": { | |
| "program": "C:/Program Files/PowerShell/7/pwsh.exe", | |
| "args": ["-NoLogo"] | |
| } | |
| } | |
| }, | |
| "agent": { | |
| "enabled": false | |
| }, | |
| "cursor_shape": "block", | |
| "git": { | |
| "git_gutter": "tracked_files", | |
| "inline_blame": { | |
| "enabled": false | |
| } | |
| }, | |
| "ensure_final_newline_on_save": false, | |
| "autosave": { | |
| "after_delay": { | |
| "milliseconds": 1000 | |
| } | |
| }, | |
| "remove_trailing_whitespace_on_save": true, | |
| "buffer_font_family": "Berkeley Mono", | |
| "format_on_save": "on", | |
| "diagnostics": { | |
| "include_warnings": true | |
| }, | |
| "lsp": { | |
| "rust-analyzer": { | |
| "initialization_options": { | |
| "check": { | |
| "command": "clippy" | |
| }, | |
| "completion": { | |
| "autoimport": { | |
| "enable": false | |
| }, | |
| "auto_iter": { | |
| "enable": false | |
| }, | |
| "auto_await": { | |
| "enable": false | |
| }, | |
| "callable": { | |
| "snippets": "add_parentheses" | |
| }, | |
| "postfix": { | |
| "enable": false | |
| }, | |
| "rustfmt": { | |
| "extraArgs": ["+nightly"] | |
| }, | |
| "diagnostics": { | |
| "useRustcErrorCode": true, | |
| "disabled": ["non_camel_case_types"] | |
| } | |
| } | |
| }, | |
| "binary": { | |
| "path": "C:/Users/jjspi/.bin/rust-analyzer.exe" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment