Skip to content

Instantly share code, notes, and snippets.

@lazaronixon
Last active August 7, 2025 12:10
Show Gist options
  • Save lazaronixon/ab6cc4225bc899bfaaddd333b99db9e8 to your computer and use it in GitHub Desktop.
Save lazaronixon/ab6cc4225bc899bfaaddd333b99db9e8 to your computer and use it in GitHub Desktop.
Zed Editor
{
"agent": {
"always_allow_tool_actions": true,
"inline_assistant_model": { "provider": "copilot_chat", "model": "claude-3.7-sonnet" },
"default_view": "text_thread",
"default_model": { "provider": "copilot_chat", "model": "claude-3.7-sonnet" },
},
"features": { "edit_prediction_provider": "none" },
"theme": "One Light",
"buffer_font_family": "DejaVu Sans Mono",
"buffer_font_size": 20,
"ui_font_size": 20,
"agent_font_size": 20,
"show_whitespaces": "none",
"gutter": { "code_actions": false, "runnables": false, "breakpoints": false },
"indent_guides": { "enabled": false },
"toolbar": { "breadcrumbs": false, "quick_actions": false },
"git_panel": { "dock": "right" },
"scroll_beyond_last_line": "off",
"enable_language_server": false,
"format_on_save": "off",
"tab_size": 2,
"telemetry": { "diagnostics": false, "metrics": false },
"git": { "inline_blame": { "enabled": false } },
"terminal": { "button": false },
"debugger": { "button": false },
"ensure_final_newline_on_save": true,
"remove_trailing_whitespace_on_save": true
}
{
"agent": {
"always_allow_tool_actions": true,
"inline_assistant_model": { "provider": "copilot_chat", "model": "claude-3.7-sonnet" },
"default_view": "text_thread",
"default_model": { "provider": "copilot_chat", "model": "claude-3.7-sonnet" },
},
"features": { "edit_prediction_provider": "none" },
"theme": "One Light",
"buffer_font_family": "Menlo",
"buffer_font_size": 16,
"ui_font_size": 16,
"agent_font_size": 16,
"show_whitespaces": "none",
"gutter": { "code_actions": false, "runnables": false, "breakpoints": false },
"indent_guides": { "enabled": false },
"toolbar": { "breadcrumbs": false, "quick_actions": false },
"git_panel": { "dock": "right" },
"scroll_beyond_last_line": "off",
"enable_language_server": false,
"format_on_save": "off",
"tab_size": 2,
"telemetry": { "diagnostics": false, "metrics": false },
"git": { "inline_blame": { "enabled": false } },
"terminal": { "button": false },
"debugger": { "button": false },
"ensure_final_newline_on_save": true,
"remove_trailing_whitespace_on_save": true
}

Keyboard shortcuts

MacOS

Navigation

  • cmd-p = Go to file
  • cmd-shift-p = Command palette
  • cmd-f = Find
  • cmd-shift-f = Find in project
  • cmd-shift-o = Go to symbol in editor
  • cmd-{ or cmd-} = Activate prev/next item
  • cmd-w = Close active tab
  • cmd-alt-t = Close other tabs
  • cmd-shift-e = Project panel: toggle focus
  • cmd-b = Toggle left dock
  • cmd-r = Toggle right dock

Editor

  • opt-(left|right) = Move to prev/next word end
  • opt-shift-(left|right) = Select to prev/next word end
  • cmd-(left|right) = Move to start/end of line
  • cmd-shift-(left|right) = Select to start/end of line
  • ctrl-shift-(left|right) = Shrink/Expand selection
  • ctrl-(pagedown|pageup) = Line down/up
  • cmd-] = Toggle indent
  • command-/ = Toggle line comment

Linux

Navigation

  • ctrl-p = Go to file
  • ctrl-shift-p = Command palette
  • ctrl-f = Find
  • ctrl-shift-f = Find in project
  • ctrl-shift-o = Go to symbol in editor
  • ctrl-(pageup|pagedown) = Activate prev/next item
  • ctrl-w = Close active tab
  • ctrl-alt-t = Close other tabs
  • ctrl-shift-e = Project panel: toggle focus
  • ctrl-b = Toggle left dock
  • ctrl-alt-b = Toggle right dock

Editor

  • ctrl-(left|right) = Move to prev/next word end
  • ctrl-shift-(left|right) = Select to prev/next word end
  • home|end = Move to start/end of line
  • shift-(home|end) = Select to start/end of line
  • alt-shift-(left|right) = Shrink/Expand selection
  • ctrl-(down|up) = Line down/up
  • ctrl-] = Toggle indent
  • ctrl-/ = Toggle line comment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment