Last active
July 5, 2023 15:24
-
-
Save Kerollmops/094f3fdc2e00fef131487dcc026726ef to your computer and use it in GitHub Desktop.
The settings I use in https://zed.dev
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
{} |
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
{ | |
"buffer_font_size": 15, | |
"base_keymap": "SublimeText", | |
"show_whitespaces": "all", | |
"features": { | |
// Show Copilot icon in status bar | |
"copilot": false | |
}, | |
"formatter": { | |
"external": { | |
"command": "rustup", | |
"arguments": [ | |
"run", | |
"nightly", | |
"--", | |
"rustfmt", | |
"--edition", | |
"2021", | |
"--" | |
] | |
} | |
}, | |
"lsp": { | |
"rust-analyzer": { | |
"initialization_options": { | |
"checkOnSave": { | |
"command": "clippy" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment