-
-
Save coqanklazy/850bf663e7c6784f626814bf0ac8ef81 to your computer and use it in GitHub Desktop.
Zed settings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "scrollbar": { | |
| "show": "never" | |
| }, | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false | |
| }, | |
| "title_bar": { | |
| "show_menus": false, | |
| "show_branch_icon": true | |
| }, | |
| "formatter": { | |
| "language_server": { | |
| "name": "biome" | |
| }, | |
| }, | |
| "code_actions_on_format": { | |
| "source.fixAll.biome": true, | |
| "source.organizeImports.biome": true | |
| }, | |
| "search": { | |
| "whole_word": false, | |
| "case_sensitive": true, | |
| "include_ignored": false, | |
| "regex": false | |
| }, | |
| "format_on_save": "on", | |
| "tab_bar": { | |
| "show_nav_history_buttons": false, | |
| "show_tab_bar_buttons": true, | |
| "show": true | |
| }, | |
| "features": { | |
| "edit_prediction_provider": "copilot" | |
| }, | |
| "show_signature_help_after_edits": true, | |
| "always_treat_brackets_as_autoclosed": false, | |
| "colorize_brackets": true, | |
| "collaboration_panel": { | |
| "button": true | |
| }, | |
| "autosave": "off", | |
| "tab_size": 3, | |
| "toolbar": { | |
| "quick_actions": false, | |
| "breadcrumbs": true | |
| }, | |
| "minimap": { | |
| "show": "never" | |
| }, | |
| "terminal": { | |
| "font_size": 13.0, | |
| "scrollbar": { | |
| "show": "auto" | |
| } | |
| }, | |
| "cursor_blink": false, | |
| "buffer_font_weight": 400.0, | |
| "buffer_font_family": "CaskaydiaCove Nerd Font", | |
| "buffer_line_height": "comfortable", | |
| "ui_font_weight": 400.0, | |
| "ui_font_family": "JetBrains Mono", | |
| "agent": { | |
| "default_profile": "write", | |
| "default_model": { | |
| "provider": "copilot_chat", | |
| "model": "gpt-5" | |
| }, | |
| "dock": "left", | |
| "model_parameters": [] | |
| }, | |
| "project_panel": { | |
| "auto_fold_dirs": false, | |
| "dock": "right" | |
| }, | |
| "icon_theme": { | |
| "mode": "dark", | |
| "light": "Zed (Default)", | |
| "dark": "Catppuccin Macchiato" | |
| }, | |
| "vim_mode": true, | |
| "ui_font_size": 14.0, | |
| "buffer_font_size": 15.0, | |
| "theme": { | |
| "mode": "dark", | |
| "light": "One Dark", | |
| "dark": "Catppuccin Espresso (Blur) [Light]" | |
| }, | |
| "relative_line_numbers": "enabled", | |
| "theme_overrides": { | |
| "Catppuccin Macchiato - No Italics": { | |
| "accents": [ | |
| "#ff69b4", | |
| "#7fff00", | |
| "#ff1493", | |
| "#00ffff", | |
| "#ff8c00", | |
| "#9400d3" | |
| ] | |
| }, | |
| "Catppuccin Mocha - No Italics": { | |
| "accents": [ | |
| "#ff69b4", | |
| "#7fff00", | |
| "#ff1493", | |
| "#00ffff", | |
| "#ff8c00", | |
| "#9400d3" | |
| ], | |
| "syntax": { | |
| "punctuation.delimiter": { | |
| "color": "#FFFFFF" | |
| } | |
| } | |
| } | |
| }, | |
| "indent_guides": { | |
| "enabled": true, | |
| "line_width": 1, | |
| "active_line_width": 2, | |
| "coloring": "indent_aware", | |
| "background_coloring": "disabled" | |
| }, | |
| "tabs": { | |
| "close_position": "right", | |
| "file_icons": true, | |
| "git_status": false, | |
| "activate_on_close": "history", | |
| "show_close_button": "hover", | |
| "show_diagnostics": "errors" | |
| }, | |
| // File syntax highlighting | |
| "file_types": { | |
| "Dockerfile": ["Dockerfile", "Dockerfile.*"], | |
| "JSON": ["json", "jsonc", "*.code-snippets"] | |
| }, | |
| "file_scan_exclusions": [ | |
| "**/.git", | |
| "**/.svn", | |
| "**/.hg", | |
| "**/CVS", | |
| "**/.DS_Store", | |
| "**/Thumbs.db", | |
| "**/.classpath", | |
| "**/.settings", | |
| "**/.vscode", | |
| "**/.idea", | |
| "**/node_modules", | |
| "**/.serverless", | |
| "**/build", | |
| "**/dist", | |
| "**/coverage", | |
| "**/.venv", | |
| "**/__pycache__", | |
| "**/.ropeproject", | |
| "**/.pytest_cache", | |
| "**/.ruff_cache" | |
| ], | |
| "file_scan_inclusions": [".env"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment