From d68cdf8c281245fc594884d9f2a1e5ed10f256a2 Mon Sep 17 00:00:00 2001 From: Clay Gomera Date: Fri, 2 Aug 2024 13:25:02 -0400 Subject: [PATCH] Updated --- .config/zed/settings.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 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 000000000..4533d4101 --- /dev/null +++ b/.config/zed/settings.json @@ -0,0 +1,33 @@ +// 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 `zed: Open Default Settings` command +// from the command palette +{ + "base_keymap": "VSCode", + "telemetry": { + "diagnostics": false, + "metrics": false + }, + "vim_mode": true, + "ui_font_size": 16, + "buffer_font_size": 16, + "ui_font_family": "Inter", + "buffer_font_family": "Mononoki Nerd Font", + "preferred_line_length": 80, + "soft_wrap": "preferred_line_length", + "theme": { + "mode": "dark", + "light": "Catppuccin Latte", + "dark": "Catppuccin Mocha" + }, + "terminal": { + "shell": { + "program": "fish" + }, + "blinking": "on" + } +}