From 211d9e03bdb31905526b99942f74d8f4fc701f1a Mon Sep 17 00:00:00 2001 From: "Mariano Z." Date: Sun, 26 Oct 2025 09:54:40 -0300 Subject: [PATCH] dev: automated commit - 2025-10-26 09:54:40 --- zed/.config/zed/settings.json | 93 +++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 zed/.config/zed/settings.json diff --git a/zed/.config/zed/settings.json b/zed/.config/zed/settings.json new file mode 100644 index 0000000..b819840 --- /dev/null +++ b/zed/.config/zed/settings.json @@ -0,0 +1,93 @@ +// 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) +{ + "telemetry": { + "diagnostics": false, + "metrics": false + }, + "ui_font_size": 16, + "buffer_font_size": 12, + "theme": { + "mode": "system", + "dark": "Catppuccin Macchiato", + "light": "Rosé Pine" + }, + "icon_theme": "Catppuccin Mocha", + "vim_mode": true, + "relative_line_numbers": true, + "show_edit_predictions": false, + "remove_trailing_whitespace_on_save": false, + "format_on_save": "off", + "ensure_final_newline_on_save": false, + "features": { + "edit_prediction_provider": "zed" + }, + "agent_font_size": 21, + "file_finder": { + "file_icons": true, + "git_status": true + }, + "buffer_font_family": "Menlo", + "buffer_font_fallbacks": ["Symbols Nerd Font Mono"], + "tab_bar": { + "show": true + }, + "scrollbar": { + "show": "never" + }, + "tabs": { + "show_diagnostics": "errors" + }, + "indent_guides": { + "enabled": true, + "coloring": "indent_aware" + }, + "centered_layout": { + "left_padding": 0.15, + "right_padding": 0.15 + }, + "inlay_hints": { + "enabled": true + }, + "terminal": { + "font_family": "Menlo", + "env": { + "EDITOR": "zed --wait" + } + }, + "file_types": { + "Dockerfile": ["Dockerfile", "Dockerfile.*"], + "JSON": ["json", "jsonc", "*.code-snippets", "jsonl"] + }, + "file_scan_exclusions": [ + "**/.git", + "**/.svn", + "**/.hg", + "**/CVS", + "**/.DS_Store", + "**/Thumbs.db", + "**/.classpath", + "**/.settings", + "**/out", + "**/dist", + "**/.husky", + "**/.turbo", + "**/.vscode-test", + "**/.vscode", + "**/.next", + "**/.storybook", + "**/.tap", + "**/.nyc_output", + "**/report", + "**/node_modules" + ], + "search": { + "regex": true + } +}