From f9527c3b04aaf90d5221f306a52d67cb0817ca23 Mon Sep 17 00:00:00 2001 From: moonleay Date: Mon, 15 Jul 2024 16:54:11 +0200 Subject: [PATCH] feat: added zed config --- zed/keymap.json | 3 +++ zed/settings.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 zed/keymap.json create mode 100644 zed/settings.json diff --git a/zed/keymap.json b/zed/keymap.json new file mode 100644 index 0000000..c9c513b --- /dev/null +++ b/zed/keymap.json @@ -0,0 +1,3 @@ +[ + +] \ No newline at end of file diff --git a/zed/settings.json b/zed/settings.json new file mode 100644 index 0000000..db2c8ad --- /dev/null +++ b/zed/settings.json @@ -0,0 +1,47 @@ +// 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. +{ + "features": { + "inline_completion_provider": "none" + }, + "project_panel": { + "dock": "right" + }, + "theme": "Catppuccin Mocha", + "telemetry": { + "diagnostics": false, + "metrics": false + }, + "vim_mode": true, + "vertical_scroll_margin": 5, + "ui_font_size": 16, + "buffer_font_size": 16, + // "ui_font_family": " Mono", + // "buffer_font_family": "LiberationMono", + "autosave": "on_focus_change", + "auto_update": false, + "tab_bar": { + "show_nav_history_buttons": false, + "show": true + }, + "toolbar": { + "quick_actions": false + }, + "chat_panel": { + "button": false + }, + "collaboration_panel": { + "button": false + }, + "assistant": { + "enabled": false, + "version": "1" + }, + "relative_line_numbers": true +}