From db84fab19983b11024616e6237840fdaec4e2569 Mon Sep 17 00:00:00 2001 From: Luka Jankovic Date: Tue, 3 Feb 2026 23:56:33 +0100 Subject: [PATCH] added zed --- .config/zed/keymap.json | 30 ++++++++++++++++++++++++++++++ .config/zed/settings.json | 25 +++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .config/zed/keymap.json create mode 100644 .config/zed/settings.json diff --git a/.config/zed/keymap.json b/.config/zed/keymap.json new file mode 100644 index 0000000..ae88eb7 --- /dev/null +++ b/.config/zed/keymap.json @@ -0,0 +1,30 @@ +// 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" + }, + }, + { + "context": "Editor && vim_mode == insert", + "bindings": { + // "j k": "vim::NormalBefore" + }, + }, + { + "context": "Editor || Terminal", + "bindings": { + "ctrl-h": "workspace::ActivatePaneLeft", + "ctrl-l": "workspace::ActivatePaneRight", + "ctrl-k": "workspace::ActivatePaneUp", + "ctrl-j": "workspace::ActivatePaneDown", + }, + }, +] diff --git a/.config/zed/settings.json b/.config/zed/settings.json new file mode 100644 index 0000000..5ec7c17 --- /dev/null +++ b/.config/zed/settings.json @@ -0,0 +1,25 @@ +// 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) +{ + "buffer_line_height": "standard", + "buffer_font_family": "CommitMono", + "buffer_font_weight": 600, + "telemetry": { + "diagnostics": false, + "metrics": false, + }, + "vim_mode": true, + "ui_font_size": 16, + "buffer_font_size": 13.0, + "theme": { + "mode": "system", + "light": "One Light", + "dark": "Nord Dark", + }, +}