Last active
December 24, 2025 16:07
-
-
Save levisantosp/779f9fe9cba7b9bc3b0adb23e37ea579 to your computer and use it in GitHub Desktop.
zed settings
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
| { | |
| "outline_panel": { | |
| "git_status": true | |
| }, | |
| "base_keymap": "VSCode", | |
| "tabs": { | |
| "git_status": true | |
| }, | |
| "multi_cursor_modifier": "alt", | |
| "sticky_scroll": { | |
| "enabled": false | |
| }, | |
| "gutter": { | |
| "folds": true | |
| }, | |
| "minimap": { | |
| "show": "never", | |
| "max_width_columns": 100 | |
| }, | |
| "scrollbar": { | |
| "axes": { | |
| "horizontal": true, | |
| "vertical": true | |
| } | |
| }, | |
| "selection_highlight": false, | |
| "cursor_blink": true, | |
| "colorize_brackets": false, | |
| "show_whitespaces": "none", | |
| "indent_guides": { | |
| "enabled": false | |
| }, | |
| "ssh_connections": [], | |
| "wsl_connections": [ | |
| { | |
| "distro_name": "Arch", | |
| "user": null, | |
| "projects": [] | |
| } | |
| ], | |
| "autosave": { | |
| "after_delay": { | |
| "milliseconds": 1000 | |
| } | |
| }, | |
| "agent_servers": { | |
| "claude": { | |
| "default_mode": "acceptEdits" | |
| } | |
| }, | |
| "agent": { | |
| "button": false, | |
| "enabled": false, | |
| "always_allow_tool_actions": true | |
| }, | |
| "icon_theme": { | |
| "mode": "dark", | |
| "light": "Zed (Default)", | |
| "dark": "Zed (Default)" | |
| }, | |
| "ui_font_size": 14, | |
| "theme": { | |
| "mode": "dark", | |
| "light": "Vesper", | |
| "dark": "Vesper" | |
| }, | |
| "close_on_file_delete": true, | |
| "agent_ui_font_size": 14, | |
| "use_on_type_format": false, | |
| "inlay_hints": { | |
| "enabled": false | |
| }, | |
| "show_completions_on_input": true, | |
| "buffer_line_height": { | |
| "custom": 2 | |
| }, | |
| "buffer_font_family": "JetBrains Mono", | |
| "ui_font_family": "Inter", | |
| "buffer_font_size": 14, | |
| "tab_size": 2, | |
| "preferred_line_length": 120, | |
| "terminal": { | |
| "max_scroll_history_lines": 10000, | |
| "cursor_shape": "block", | |
| "env": {}, | |
| "font_family": "JetBrains Mono", | |
| "line_height": "comfortable", | |
| "font_size": 14, | |
| "shell": "system" | |
| }, | |
| "git": { | |
| "inline_blame": { | |
| "enabled": false | |
| } | |
| }, | |
| "toolbar": { | |
| "breadcrumbs": false, | |
| "quick_actions": false | |
| }, | |
| "formatter": { | |
| "language_server": { | |
| "name": "biome" | |
| } | |
| }, | |
| "lsp": { | |
| "biome": { | |
| "settings": { | |
| "require_config_file": true | |
| } | |
| } | |
| }, | |
| "code_actions_on_format": { | |
| "source.fixAll.biome": true, | |
| "source.organizeImports.biome": true | |
| }, | |
| "project_panel": { | |
| "auto_fold_dirs": false, | |
| "git_status": true, | |
| "dock": "right" | |
| }, | |
| "disable_ai": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment