Skip to content

Instantly share code, notes, and snippets.

@Kerollmops
Last active July 5, 2023 15:24
Show Gist options
  • Save Kerollmops/094f3fdc2e00fef131487dcc026726ef to your computer and use it in GitHub Desktop.
Save Kerollmops/094f3fdc2e00fef131487dcc026726ef to your computer and use it in GitHub Desktop.
The settings I use in https://zed.dev
{
"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