Skip to content

Instantly share code, notes, and snippets.

@syogaraj
Created April 18, 2025 11:26
Show Gist options
  • Select an option

  • Save syogaraj/ff4b538cd912ecad603e9691f1455a1f to your computer and use it in GitHub Desktop.

Select an option

Save syogaraj/ff4b538cd912ecad603e9691f1455a1f to your computer and use it in GitHub Desktop.
Zed settings
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"assistant": {
"default_model": {
"provider": "copilot_chat",
"model": "gemini-2.5-pro"
},
"version": "2"
},
"features": {
"edit_prediction_provider": "copilot"
},
"vim_mode": false,
"ui_font_size": 16,
"buffer_font_size": 16,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Ayu Dark"
},
"autosave": { "after_delay": { "milliseconds": 500 } },
"inlay_hints": {
"enabled": true
},
"diagnostics": {
"inline": {
"enabled": true
}
},
"lsp": {
"rust-analyzer": {
"initialization_options": {
"checkOnSave": {
"command": "clippy"
}
}
}
},
"tabs": {
"file_icons": true,
"git_status": true,
"show_diagnostics": "all"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment