diff --git a/.config/zed/settings.json b/.config/zed/settings.json new file mode 100644 index 0000000..c5c8253 --- /dev/null +++ b/.config/zed/settings.json @@ -0,0 +1,76 @@ +// 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) +{ + "autosave": { + "after_delay": { + "milliseconds": 500 + } + }, + "tabs": { + "git_status": true, + "file_icons": true, + "show_diagnostics":"all" + }, + "edit_predictions": { + "mode": "subtle", + "copilot": { + "proxy": null, + "proxy_no_verify": null + }, + "enabled_in_text_threads": false + }, + "slash_commands": { + "docs": { + "enabled": true + }, + "project": { + "enabled": true + } + }, + "icon_theme": "Catppuccin Frappé", + "ui_font_size": 15, + "buffer_font_size": 16, + "buffer_line_height": { "custom": 1.25 }, + "wrap_guides": [80, 120], + "title_bar": { + "show_branch_icon": true + }, + "indent_guides": { + "coloring": "indent_aware", + "background_coloring": "indent_aware" + }, + "project_panel": { + "default_width": 185, + "entry_spacing": "standard", + "indent_size": 10 + }, + "outline_panel": { + "default_width": 185, + "indent_size": 10 + }, + "collaboration_panel": { + "default_width": 185 + }, + "git_panel": { + "default_width": 185, + "fallback_branch_name": "master" + }, + "terminal": { + "line_height":"standard" + }, + "completions":{ + "words": "enabled" + }, + + "theme": { + "mode": "dark", + "light": "Catppuccin Macchiato", + "dark": "Catppuccin Macchiato" + } +}