Last active
July 26, 2026 15:57
-
-
Save mihai-vlc/37d3a11c564ca580f6953bccd7fea03c to your computer and use it in GitHub Desktop.
Zed configurations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Zed keymap | |
| // | |
| // For information on binding keys, see the Zed | |
| // documentation: https://zed.dev/docs/key-bindings | |
| // | |
| // To see the default key bindings run `zed: open default keymap` | |
| // from the command palette. | |
| [ | |
| { | |
| "context": "Workspace", | |
| "bindings": { | |
| // "shift shift": "file_finder::Toggle" | |
| "f11": "zed::ToggleFullScreen", | |
| "ctrl-`": "terminal_panel::ToggleFocus", | |
| "f9": "editor::ToggleBreakpoint", | |
| "f10": "debugger::StepOver", | |
| "shift-f10": "debugger::StepInto", | |
| }, | |
| }, | |
| { | |
| "context": "Editor && vim_mode == insert", | |
| "bindings": { | |
| "j j": "vim::NormalBefore", | |
| "ctrl-w": ["pane::CloseActiveItem", { "close_pinned": false }], | |
| "ctrl-p": "file_finder::Toggle", | |
| }, | |
| }, | |
| { | |
| "context": "Editor", | |
| "bindings": { | |
| "ctrl-s": "workspace::Save", | |
| "ctrl-f": "buffer_search::Deploy", | |
| "ctrl-x": "editor::Cut", | |
| "ctrl-c": "editor::Copy", | |
| "ctrl-v": "editor::Paste", | |
| "ctrl-z": "editor::Undo", | |
| "ctrl-r": "editor::Redo", | |
| "ctrl-a": "editor::SelectAll", | |
| "ctrl-shift-l": "editor::SplitSelectionIntoLines", | |
| "ctrl-i": "editor::ShowSignatureHelp", | |
| "shift-f10": "debugger::StepInto", | |
| }, | |
| }, | |
| { | |
| "context": "ProjectPanel", | |
| "bindings": { | |
| "enter": "project_panel::Open", | |
| }, | |
| }, | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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) | |
| { | |
| "diff_view_style": "unified", | |
| "vim_mode": true, | |
| "vim": { | |
| "toggle_relative_line_numbers": false | |
| }, | |
| "disable_ai": true, | |
| "icon_theme": { | |
| "mode": "dark", | |
| "light": "Zed (Default)", | |
| "dark": "Zed (Default)", | |
| }, | |
| "active_pane_modifiers": {}, | |
| "cursor_blink": false, | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false, | |
| "anthropic_retention": false, | |
| }, | |
| "ui_font_size": 20, | |
| "buffer_font_size": 15, | |
| "show_completions_on_input": false, | |
| "show_whitespaces": "boundary", | |
| "auto_signature_help": false, | |
| "show_signature_help_after_edits": true, | |
| "theme": { | |
| "mode": "dark", | |
| "light": "One Light", | |
| "dark": "Ayu Dark", | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment