Skip to content

Instantly share code, notes, and snippets.

@starkovsky
Created March 12, 2026 23:55
Show Gist options
  • Select an option

  • Save starkovsky/f9c758c90c6f69e24fc547ddedecfcb2 to your computer and use it in GitHub Desktop.

Select an option

Save starkovsky/f9c758c90c6f69e24fc547ddedecfcb2 to your computer and use it in GitHub Desktop.
zed.config.jsonc
{
"title_bar": {
"show_menus": false,
"show_branch_icon": true,
},
"close_on_file_delete": true,
"always_treat_brackets_as_autoclosed": true,
"scrollbar": {
"show": "always",
},
"drag_and_drop_selection": {
"enabled": false,
},
"sticky_scroll": {
"enabled": true,
},
"calls": {
"mute_on_join": true,
},
"restore_on_startup": null,
"soft_wrap": "editor_width",
"ui_font_features": {
"calt": false,
},
"buffer_font_family": "JetBrains Mono",
"buffer_font_size": 16,
"buffer_line_height": { "custom": 1.6 },
"buffer_font_features": {
"calt": false,
},
"tab_size": 2,
"autosave": "on_focus_change",
"format_on_save": "off",
"theme": "Modus Vivendi Tinted",
"icon_theme": "Catppuccin Frappé",
"confirm_quit": true,
"file_scan_exclusions": [
// "**/.git",
// "**/.svn",
"**/.hg",
"**/.jj",
"**/CVS",
"**/.DS_Store",
"**/Thumbs.db",
"**/.classpath",
"**/.settings",
],
"load_direnv": "shell_hook",
"tab_bar": {
"show": false,
"show_nav_history_buttons": false,
},
"tabs": {
"file_icons": true,
"git_status": true,
},
"toolbar": {
"code_actions": true,
"breadcrumbs": true,
"quick_actions": false,
},
"terminal": {
"detect_venv": "off",
"font_size": 14,
"line_height": { "custom": 1.2 },
"font_family": "JetBrains Mono",
"working_directory": "current_project_directory",
},
"telemetry": {
"diagnostics": false,
"metrics": false,
},
"indent_guides": {
"enabled": true,
"line_width": 1,
"active_line_width": 2,
// "coloring": "fixed"
"coloring": "indent_aware",
},
"colorize_brackets": true,
"project_panel": {
"default_width": 400,
},
"outline_panel": {
"button": false,
"default_width": 400,
},
"git_panel": {
"tree_view": true,
"default_width": 400,
},
"collaboration_panel": {
"default_width": 400,
},
"notification_panel": {
"default_width": 400,
},
// Theme overrides
"theme_overrides": {
// "Modus Vivendi Tinted": {
// "accents": [
// "#ff69b4",
// "#86C04D",
// "#ff1493",
// "#00ffff",
// "#ff8c00",
// "#9400d3"
// ]
// }
},
"semantic_tokens": "combined",
"experimental.theme_overrides": {
"syntax": {
"comment": {
"color": "#989898",
"font_style": "italic",
},
},
},
"edit_predictions": {
"provider": "copilot",
"mode": "subtle",
"enabled_in_text_threads": false,
},
"agent": {
"show_turn_stats": true,
"play_sound_when_agent_done": true,
"default_model": {
"enable_thinking": false,
"provider": "copilot_chat",
"model": "gpt-5.4"
},
"tool_permissions": {
"default": "allow"
},
"inline_assistant_model": {
"provider": "copilot_chat",
"model": "gpt-5.4",
},
"commit_message_model": {
"provider": "copilot_chat",
"model": "gpt-5.4",
},
"thread_summary_model": {
"provider": "copilot_chat",
"model": "gpt-5.4",
},
"button": true,
"default_width": 500,
"dock": "right",
"enabled": true,
},
"agent_servers": {
"opencode": {
"default_model": "github-copilot/gpt-5.4",
"favorite_models": [
"github-copilot/gpt-5.4",
"github-copilot/gpt-5.3-codex",
"github-copilot/claude-opus-4.6",
"github-copilot/claude-sonnet-4.6"
],
"type": "registry"
},
},
"lsp": {
"oxlint": {
"initialization_options": {
"settings": {
"disableNestedConfig": false,
"fixKind": "safe_fix",
"run": "onType",
"typeAware": true,
"unusedDisableDirectives": "deny",
},
},
},
"oxfmt": {
"initialization_options": {
"settings": {
"fmt.configPath": null,
},
},
},
"rust-analyzer": {
"initialization_options": {
"check": {
"command": "clippy",
},
},
},
},
"auto_update": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment