From e980176acaf215278b2d071eea9b1751dab48abe Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Fri, 7 Feb 2025 19:43:31 +0100 Subject: [PATCH] zed config --- .config/zed/keymap.json | 23 +++++++++++++++++++++++ .config/zed/settings.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 54 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..5961a29 --- /dev/null +++ b/.config/zed/keymap.json @@ -0,0 +1,23 @@ +// 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" + //"ctrl-escape": "workspace::NewTerminal", + "ctrl-escape": "terminal_panel::ToggleFocus" + } + }, + { + "context": "Editor", + "bindings": { + // "j k": ["workspace::SendKeystrokes", "escape"] + } + } +] diff --git a/.config/zed/settings.json b/.config/zed/settings.json new file mode 100644 index 0000000..e2aa053 --- /dev/null +++ b/.config/zed/settings.json @@ -0,0 +1,31 @@ +// 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) +{ + "assistant": { + "default_model": { + "provider": "zed.dev", + "model": "claude-3-5-sonnet-latest" + }, + "version": "2" + }, + "vim_mode": true, + "buffer_font_family": "BlexMono Nerd Font Mono", + "ui_font_size": 16, + "buffer_font_size": 16, + "theme": { + "mode": "system", + "light": "Ayu Dark", + "dark": "One Dark" + }, + "languages": { + "GDScript": { + "hard_tabs": true + } + } +}