Created
May 11, 2026 21:48
-
-
Save blackmagezeraf/db0a7b85deef3922039d4c2011766c8a to your computer and use it in GitHub Desktop.
Zed Editor Settings (~/.config/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
| { | |
| // Startup Experience | |
| "restore_on_startup": "launchpad", | |
| // Editor Settings | |
| "ui_font_family": "Noto Sans", | |
| "buffer_font_family": "0xProto Nerd Font", | |
| "buffer_font_size": 13, | |
| "ui_font_size": 13, | |
| "line_ending": "enforce_lf", | |
| "preferred_line_length": 80, | |
| "soft_wrap": "prefer_line", | |
| "wrap_guides": [80], | |
| "buffer_line_height": { | |
| "custom": 1.7, | |
| }, | |
| "indent_guides": { | |
| "active_line_width": 80, | |
| "enabled": true, | |
| "line_width": 80, | |
| "background_coloring": "indent_aware", | |
| "coloring": "indent_aware", | |
| }, | |
| "show_wrap_guides": true, | |
| "cli_default_open_behavior": "new_window", | |
| "vim_mode": true, | |
| "base_keymap": "VSCode", | |
| "theme": { | |
| "mode": "system", | |
| "light": "Aether", | |
| "dark": "Aether", | |
| }, | |
| // // Editor Panel Settings | |
| "outline_panel": { | |
| "dock": "left", | |
| }, | |
| "git_panel": { | |
| "dock": "left", | |
| }, | |
| "project_panel": { | |
| "dock": "left", | |
| }, | |
| "session": { | |
| "trust_all_worktrees": true, | |
| }, | |
| // Terminal | |
| "terminal": { | |
| "font_family": "0xProto Nerd Font", | |
| "font_size": 11, | |
| "flexible": false, | |
| "button": true, | |
| }, | |
| // Editing Experience | |
| // // Tabs | |
| "hard_tabs": false, | |
| "tab_bar": { | |
| "show": true, | |
| "show_tab_bar_buttons": false, | |
| "show_nav_history_buttons": false, | |
| "show_pinned_tabs_in_separate_row": true, | |
| }, | |
| "tab_size": 4, | |
| "tabs": { | |
| "activate_on_close": "history", | |
| "close_position": null, | |
| "file_icons": true, | |
| "git_status": true, | |
| "show_close_button": null, | |
| "show_diagnostics": "all", | |
| }, | |
| "max_tabs": 5, | |
| "preview_tabs": { | |
| "enabled": true, | |
| "enable_keep_preview_on_code_navigation": true, | |
| "enable_preview_file_from_code_navigation": true, | |
| "enable_preview_from_file_finder": true, | |
| "enable_preview_from_multibuffer": true, | |
| "enable_preview_from_project_panel": true, | |
| "enable_preview_multibuffer_from_code_navigation": true, | |
| }, | |
| // // Scroll | |
| "scrollbar": { | |
| "show": "always", | |
| "axes": { | |
| "vertical": true, | |
| "horizontal": true, | |
| }, | |
| "cursors": true, | |
| "diagnostics": "all", | |
| "git_diff": true, | |
| "search_results": true, | |
| "selected_symbol": true, | |
| "selected_text": true, | |
| }, | |
| // Language Spefic Settings | |
| "languages": { | |
| "HTML": { | |
| "tab_size": 2, | |
| }, | |
| "JSON": { | |
| "tab_size": 2, | |
| }, | |
| "JSONC": { | |
| "tab_size": 2, | |
| }, | |
| "JavaScript": { | |
| "tab_size": 2, | |
| }, | |
| "TypeScript": { | |
| "tab_size": 2, | |
| }, | |
| "JSDoc": { | |
| "tab_size": 2, | |
| }, | |
| "CSS": { | |
| "tab_size": 2, | |
| }, | |
| "TSX": { | |
| "tab_size": 2, | |
| }, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment