aboutsummaryrefslogtreecommitdiff
path: root/zed
diff options
context:
space:
mode:
authorYousef Jan <yousefjan24000@gmail.com>2026-06-24 16:49:33 +0300
committerYousef Jan <yousefjan24000@gmail.com>2026-06-24 16:49:33 +0300
commit2ba427332f2c0b8d1480434c688efaee1110ca51 (patch)
tree51712c789b893c27503dfc11e67b3d356c9783f1 /zed
parentde759743f0281c6e9dad043d66ca055e19e42491 (diff)
Doom tweaks
Diffstat (limited to 'zed')
-rw-r--r--zed/keymap.json44
-rw-r--r--zed/settings.json33
2 files changed, 0 insertions, 77 deletions
diff --git a/zed/keymap.json b/zed/keymap.json
deleted file mode 100644
index ec685eb..0000000
--- a/zed/keymap.json
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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": {
- "\\ f f": "file_finder::Toggle",
- "\\ g": "workspace::NewSearch",
- "\\ b": "tab_switcher::Toggle",
- "\\ e": "project_panel::ToggleFocus",
- "\\ a": "agent::ToggleFocus",
- },
- },
- {
- "context": "Editor && vim_mode == normal",
- "bindings": {
- "g d": "editor::GoToDefinition",
- "g D": "editor::GoToDeclaration",
- "g r": "editor::FindAllReferences",
- "g i": "editor::GoToImplementation",
-
- "K": "editor::Hover",
- "ctrl-k": "editor::ShowSignatureHelp",
-
- "\\ c a": "editor::ToggleCodeActions",
- "\\ r n": "editor::Rename",
- "\\ f m": "editor::Format",
-
- "\\ w": "workspace::Save",
- },
- },
- {
- "context": "Editor && vim_mode == visual",
- "bindings": {
- "J": "editor::MoveLineDown",
- "K": "editor::MoveLineUp",
- },
- },
-]
diff --git a/zed/settings.json b/zed/settings.json
deleted file mode 100644
index 84ddb61..0000000
--- a/zed/settings.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "which_key": {
- "delay_ms": 1000,
- },
- "autosave": "on_focus_change",
- "agent_servers": {
- "claude-acp": {
- "type": "registry",
- },
- },
- "show_edit_predictions": false,
- "icon_theme": "Zed (Default)",
- "vim_mode": true,
-
- "ui_font_size": 16,
- "buffer_font_size": 15,
-
- "theme": {
- "mode": "dark",
- "light": "Ayu Light",
- "dark": "macOS Classic Dark",
- },
-
- "relative_line_numbers": "enabled",
- "cursor_blink": true,
-
- "wrap_guides": [100],
-
- "tab_size": 2,
- "hard_tabs": false,
-
- "vertical_scroll_margin": 10,
-}