this repo has no description
dotfiles

[zed] Add basic config

sharparam.com caf6bc94 647cca5f

verified
+25
+25
zed/.config/zed/settings.json
··· 1 + // Zed settings 2 + // 3 + // For information on how to configure Zed, see the Zed 4 + // documentation: https://zed.dev/docs/configuring-zed 5 + // 6 + // To see all of Zed's default settings without changing your 7 + // custom settings, run `zed: open default settings` from the 8 + // command palette (cmd-shift-p / ctrl-shift-p) 9 + { 10 + "features": { 11 + "edit_prediction_provider": "zed" 12 + }, 13 + "icon_theme": "Catppuccin Macchiato", 14 + "vim_mode": true, 15 + "base_keymap": "VSCode", 16 + // "ui_font_family": "Iosevka Aile", 17 + "ui_font_size": 16, 18 + "buffer_font_family": "Iosevka Sharpie", 19 + "buffer_font_size": 16, 20 + "theme": { 21 + "mode": "system", 22 + "light": "Catppuccin Latte", 23 + "dark": "Catppuccin Macchiato" 24 + } 25 + }