Skip to content

Instantly share code, notes, and snippets.

@SaltyAom
Last active March 30, 2025 06:52
Show Gist options
  • Save SaltyAom/58d6cfda531573c84acd06c28cae048e to your computer and use it in GitHub Desktop.
Save SaltyAom/58d6cfda531573c84acd06c28cae048e to your computer and use it in GitHub Desktop.
// 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 the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"theme": "Catppuccin Latte - No Italics",
"buffer_font_size": null,
"tab_size": 4,
"buffer_font_family": "Geist Mono",
"format_on_save": "off",
"project_panel": {
"dock": "right"
},
"git_panel": {
"button": true,
"dock": "right"
},
"outline_panel": {
"dock": "right",
"button": false
},
"notification_panel": {
"button": false
},
"chat_panel": {
"button": "never",
"dock": "right"
},
"assistant": {
"default_model": {
"provider": "zed.dev",
"model": "claude-3-5-sonnet-latest"
},
"version": "2",
"button": false
},
"terminal": {
"button": false
},
"collaboration_panel": {
"button": false,
"dock": "right"
},
"experimental.theme_overrides": {
"background.appearance": "blurred",
// dark
// "background": "#111111d7",
// "status_bar.background": "#111111d7",
// "title_bar.background": "#111111d7",
// "elevated_surface.background": "#111111d7",
// "surface.background": "#111111d7",
// "editor.line_number": "#ffffff66",
//
// white
"background": "#f9fafcba",
"status_bar.background": "#f9fafcba",
"title_bar.background": "#f9fafcba",
"elevated_surface.background": "#f9fafc",
"surface.background": "#00000000",
"editor.line_number": "#00000020",
//
"border": "#90909000",
"hint.background": "#e8e8e8c0",
"editor.background": "#00000000",
"editor.active_line_number": "#0079ff90",
"editor.gutter.background": "#00000000",
"tab_bar.background": "#00000000",
"terminal.background": "#00000000",
"toolbar.background": "#00000000",
"tab.active_background": "#007aff0c",
"element.selected": "#007aff0c",
"tab.inactive_background": "#00000000",
"editor.indent_guide": "#007aff12",
"editor.indent_guide_active": "#007aff1a",
"panel.indent_guide": "#007aff12",
"panel.indent_guide_hover": "#007aff16",
"panel.indent_guide_active": "#007aff1a",
"panel.background": "#00000000",
"panel.focused_border": "00000000",
"element.active": "#00000000",
"border.variant": "#00000000",
"scrollbar.track.border": "#00000000",
"editor.active_line.background": "#00000000",
"scrollbar.track.background": "#00000000",
"scrollbar.thumb.background": "#007aff0c",
"ghost_element.background": "#007aff00",
"element.hover": "#007aff08",
"ghost_element.hover": "#007aff08",
"ghost_element.active": "#007aff0c",
"ghost_element.selected": "#007aff12",
"drop_target.background": "#007aff12",
"editor.highlighted_line.background": "#007aff12"
},
"toolbar": {
"breadcrumbs": false,
"quick_actions": false
},
"tab_bar": {
"show_nav_history_buttons": false
},
"features": {
"edit_prediction_provider": "zed"
},
"hard_tabs": true,
"languages": {
"Vue.js": {
"linked_edits": false
}
},
"language_overrides": {
"TypeScript": {
"tab_size": 4,
"hard_tabs": true
},
"JSON": {
"tab_size": 4,
"hard_tabs": true
}
}
// "formatter": {
// "external": {
// "command": "prettier",
// "arguments": ["--stdin-filepath", "{buffer_path}"]
// }
// }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment