Last active
June 7, 2025 17:55
-
-
Save sanbox-irl/d21cdf9b00823c384eb7c9f69536ba60 to your computer and use it in GitHub Desktop.
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
| { | |
| "features": { | |
| "copilot": false, | |
| "edit_prediction_provider": "none" | |
| }, | |
| "auto_signature_help": true, | |
| "show_signature_help_after_edits": true, | |
| "base_keymap": "VSCode", | |
| "theme": "Fleet Dark Purple", | |
| "ui_font_size": 20, | |
| "buffer_font_size": 24.0, | |
| "terminal": { | |
| "font_family": "MesloLGS NF" | |
| }, | |
| "agent": { | |
| "enabled": false, | |
| "version": "2" | |
| }, | |
| "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, | |
| "update_with_cursor": false, | |
| "primary_only": false, | |
| "use_rendered": false | |
| }, | |
| "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"] | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment