From 4da67fcef8d9423db3404fd90474208ac86e2a9f Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Sun, 21 Sep 2025 21:07:57 +0200 Subject: [PATCH] Zed editor/IDE configs --- .config/zed/settings.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .config/zed/settings.json diff --git a/.config/zed/settings.json b/.config/zed/settings.json new file mode 100644 index 0000000..a9654f6 --- /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) +{ + "vim_mode": true, + "icon_theme": "Material Icon Theme", + "base_keymap": "JetBrains", + "ui_font_size": 16, + "buffer_font_size": 15, + "terminal": { + "font_family": "MonaspiceNe Nerd Font Mono", + "font_size": 15, + "line_height": "standard" + }, + "theme": { + "mode": "dark", + "light": "One Light", + "dark": "Zedokai Darker" + } +}