Skip to content

Instantly share code, notes, and snippets.

@mijndert
Last active August 23, 2025 18:23
Show Gist options
  • Select an option

  • Save mijndert/06ac42861402fca32de2af3215c21626 to your computer and use it in GitHub Desktop.

Select an option

Save mijndert/06ac42861402fca32de2af3215c21626 to your computer and use it in GitHub Desktop.
Zed config
// 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)
{
"show_edit_predictions": true,
"remove_trailing_whitespace_on_save": true,
"indent_guides": {
"enabled": true,
"line_width": 0,
"active_line_width": 0,
"coloring": "fixed",
"background_coloring": "disabled"
},
"terminal": {
"font_family": "JetBrains Mono",
"blinking": "off",
"cursor_shape": "bar"
},
"debugger": { "button": false },
"auto_install_extensions": {
"terraform": true,
"markdown": true,
"catppuccin": true,
"docker-compose": true,
"scss": true,
"make": true,
"dockerfile": true,
"html": true
},
"tab_size": 2,
"cursor_shape": "bar",
"tabs": {
"show_close_button": "hidden"
},
"minimap": {
"show": "never"
},
"title_bar": {
"show_onboarding_banner": false,
"show_user_picture": false,
"show_sign_in": false
},
"cursor_blink": false,
"base_keymap": "VSCode",
"disable_ai": true,
"telemetry": {
"diagnostics": false,
"metrics": false
},
"toolbar": {
"breadcrumbs": false,
"quick_actions": false,
"selections_menu": false
},
"collaboration_panel": { "button": false },
"notification_panel": { "button": false },
"agent": {
"enabled": false,
"button": false
},
"show_call_status_icon": false,
"chat_panel": { "button": "never" },
"ui_font_size": 16,
"buffer_font_size": 12,
"diagnostics": {
"button": false,
"include_warnings": true,
"lsp_pull_diagnostics": {
"enabled": true,
"debounce_ms": 50
},
"inline": {
"enabled": false,
"update_debounce_ms": 150,
"padding": 4,
"min_column": 0,
"max_severity": null
},
"cargo": null
},
"outline_panel": { "button": false },
"theme": {
"mode": "dark",
"light": "Catppuccin Latte",
"dark": "Catppuccin Mocha"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment