From a806bd1aaa3453c7c65e57a45401514a469738d8 Mon Sep 17 00:00:00 2001 From: Michael Ochmann Date: Thu, 11 Jul 2024 16:51:02 +0200 Subject: [PATCH] added zed config --- .config/zed/keymap.json | 9 +++++++++ .config/zed/settings.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 40 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..c946fa4 --- /dev/null +++ b/.config/zed/keymap.json @@ -0,0 +1,9 @@ +[ + { + "context": "Workspace", + "bindings": { + "cmd-t": "workspace::ToggleBottomDock", + "ctrl-tab" : "pane::ActivatePrevItem" + } + } +] diff --git a/.config/zed/settings.json b/.config/zed/settings.json new file mode 100644 index 0000000..e0700a7 --- /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 the `open default settings` command +// from the command palette or from `Zed` application menu. +{ + "base_keymap": "VSCode", + "theme": "Monokai", + "ui_font_size": 16, + "ui_font_family": "SF Pro", + "buffer_font_size": 16, + "vim_mode": true, + "hard_tabs": true, + "format_on_save": "off", + "font_family": "Iosevka", + "buffer_font_family" : "Iosevka", + "buffer_font_features": { + "calt": false + }, + "tab_size": 4, + "telemetry": { + "diagnostics": false, + "metrics": false + }, + "relative_line_numbers" : true, + "diagnostics" : false, + "hour_format" : "hour24" +}