Skip to content

Instantly share code, notes, and snippets.

@storopoli
Last active August 4, 2025 18:42
Show Gist options
  • Save storopoli/e2b6610fb3430e47a4b374a9a81476e0 to your computer and use it in GitHub Desktop.
Save storopoli/e2b6610fb3430e47a4b374a9a81476e0 to your computer and use it in GitHub Desktop.
Zed Configs
// 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)
{
"ui_font_size": 16,
"buffer_font_size": 13,
"buffer_font_family": "Zed Plex Mono",
"buffer_font_features": {
// Disable ligatures:
"calt": false
},
"auto_signature_help": true,
"restore_on_startup": "none",
"telemetry": {
"metrics": false,
"diagnostics": false
},
"use_smartcase_search": true,
"vim_mode": true,
"relative_line_numbers": true,
"vertical_scroll_margin": 8,
"vim": {
"use_system_clipboard": "never",
"toggle_relative_line_numbers": true,
"highlight_on_yank_duration": 100
},
"inlay_hints": {
"enabled": true,
"show_type_hints": true,
"show_parameter_hints": true,
"show_other_hints": true
},
"theme": {
"mode": "system",
"light": "Gruvbox Light Hard",
"dark": "Gruvbox Dark Hard"
},
"features": {
"edit_prediction_provider": "copilot"
},
"agent": {
"default_model": {
"provider": "copilot_chat",
"model": "gpt-4.1"
}
},
"calls": {
"mute_on_join": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment