zed

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 2884f49ce3c32b54a714cccdf18d4211360509c1
parent 5da5cf474809e75a3c691e292444e7a7541b47e9
Author: minerva-jupiter <ryouturn@gmail.com>
Date:   Sat, 28 Mar 2026 13:43:31 +0900

fixed paste

Diffstat:
Akeymap.json | 28++++++++++++++++++++++++++++
Aprompts/prompts-library-db.0.mdb/data.mdb | 0
Aprompts/prompts-library-db.0.mdb/lock.mdb | 0
Msettings.json | 13++++++++++++-
4 files changed, 40 insertions(+), 1 deletion(-)

diff --git a/keymap.json b/keymap.json @@ -0,0 +1,28 @@ +// 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 && (vim_mode == helix_normal || vim_mode == helix_visual)", + "bindings": { + "p": "editor::Paste", + "P": "editor::Paste", + }, + }, +] diff --git a/prompts/prompts-library-db.0.mdb/data.mdb b/prompts/prompts-library-db.0.mdb/data.mdb Binary files differ. diff --git a/prompts/prompts-library-db.0.mdb/lock.mdb b/prompts/prompts-library-db.0.mdb/lock.mdb Binary files differ. diff --git a/settings.json b/settings.json @@ -7,6 +7,17 @@ // custom settings, run `zed: open default settings` from the // command palette (cmd-shift-p / ctrl-shift-p) { + "helix_mode": true, + "agent": { + "default_profile": "write", + "default_model": { + "provider": "google", + "model": "gemini-2.5-flash-lite", + "enable_thinking": true + }, + "favorite_models": [], + "model_parameters": [] + }, "ui_font_family": "Moralerspace Neon NF", "buffer_font_weight": 400.0, "buffer_font_family": "Moralerspace Neon NF", @@ -14,7 +25,7 @@ "diagnostics": false, "metrics": false }, - "vim_mode": true, + "vim_mode": false, "icon_theme": "Zed (Default)", "ui_font_size": 16.0, "buffer_font_size": 13.0,