bal_gennady

zed cofnfig @FarSeaweed1266

Oct 21st, 2025
789
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.26 KB | Source Code | 0 0
  1. {
  2.     "debugger": {
  3.         "dock": "bottom"
  4.     },
  5.     "agent": {
  6.         "dock": "left"
  7.     },
  8.     "edit_predictions": {
  9.         "mode": "subtle",
  10.         "copilot": {
  11.             "proxy": null,
  12.             "proxy_no_verify": null,
  13.             "enterprise_uri": null
  14.         },
  15.         "enabled_in_text_threads": false
  16.     },
  17.     // Aparência (temas, fonte, wrap)
  18.     "icon_theme": "Material Icon Theme",
  19.     "theme": "Catppuccin Espresso (Blur) [Light]",
  20.     "buffer_font_family": "JetBrainsMono Nerd Font",
  21.     "buffer_font_size": 16,
  22.     "wrap_guides": [80, 120],
  23.     "soft_wrap": "editor_width",
  24.     "ui_font_size": 17,
  25.     // Preferências gerais
  26.     "diagnostics_max_severity": "hint",
  27.     "inlay_hints": {
  28.         // "enabled": true,
  29.         "show_type_hints": true,
  30.         "show_parameter_hints": true,
  31.         "show_other_hints": true,
  32.         "show_background": false,
  33.         "edit_debounce_ms": 700,
  34.         "scroll_debounce_ms": 50,
  35.         "toggle_on_modifiers_press": {
  36.             "control": true
  37.         },
  38.         "show_value_hints": true
  39.     },
  40.     // Barra de status (bottom bar)
  41.     "status_bar": {
  42.         "active_language_button": true, // mostra linguagem ativa (TS, JS, etc.)
  43.         "cursor_position_button": false // mostra linha e coluna do cursor
  44.     },
  45.     // Tabs (abas dos arquivos)
  46.     "tab_bar": {
  47.         "show": true,
  48.         "show_nav_history_buttons": false,
  49.         "show_tab_bar_buttons": false
  50.     },
  51.     "tab_size": 2,
  52.     "tabs": {
  53.         "close_position": "right",
  54.         "file_icons": true,
  55.         "git_status": true,
  56.         "activate_on_close": "neighbour",
  57.         "show_close_button": "hover",
  58.         "show_diagnostics": "all"
  59.     },
  60.     // Title Bar (top bar do Zed)
  61.     "title_bar": {
  62.         "show_branch_icon": true,
  63.         "show_branch_name": false,
  64.         "show_project_items": false,
  65.         "show_onboarding_banner": false,
  66.         "show_user_picture": false,
  67.         "show_sign_in": true,
  68.         "show_menus": false
  69.     },
  70.     // Toolbar (equivalente Command Palette fixo)
  71.     "toolbar": {
  72.         "breadcrumbs": true,
  73.         "quick_actions": true,
  74.         "selections_menu": true,
  75.         "agent_review": true
  76.     },
  77.     // Minimap
  78.     "minimap": {
  79.         "show": "never", // desliga minimap
  80.         "thumb": "always", // mostra "thumb" (indicador do scroll)
  81.         "thumb_border": "left_open", // estilo da borda do thumb
  82.         "current_line_highlight": null // não destaca a linha atual no minimap
  83.     },
  84.     // Git
  85.     "git": {
  86.         "git_gutter": "tracked_files",
  87.         "inline_blame": {
  88.             "enabled": true,
  89.             "show_commit_summary": true,
  90.             "padding": 7
  91.         },
  92.         "branch_picker": {
  93.             "show_author_name": true
  94.         },
  95.         "hunk_style": "unstaged_hollow"
  96.     },
  97.     // Editor (cursor, indentação, whitespaces)
  98.     "cursor_blink": true,
  99.     "show_whitespaces": "none",
  100.     "indent_guides": {
  101.         "enabled": true,
  102.         "line_width": 1,
  103.         "active_line_width": 0,
  104.         "coloring": "indent_aware",
  105.         "background_coloring": "disabled"
  106.     },
  107.     // Explorer / Project Panel
  108.     "project_panel": {
  109.         "button": false,
  110.         "default_width": 240,
  111.         "folder_icons": false,
  112.         // "hide_root": true,
  113.         "indent_size": 20,
  114.         "auto_fold_dirs": false,
  115.         "drag_and_drop": true,
  116.         "git_status": true,
  117.         "auto_reveal_entries": true,
  118.         "entry_spacing": "comfortable",
  119.         "starts_open": true,
  120.         "scrollbar": {
  121.             "show": null
  122.         },
  123.         "indent_guides": {
  124.             "show": "always"
  125.         }
  126.     },
  127.     "collaboration_panel": {
  128.         "button": false
  129.     },
  130.     "outline_panel": {
  131.         "button": false,
  132.         "default_width": 300,
  133.         "file_icons": true,
  134.         "folder_icons": true,
  135.         "git_status": true,
  136.         "indent_size": 20,
  137.         "auto_reveal_entries": true,
  138.         "auto_fold_dirs": true,
  139.         "indent_guides": {
  140.             "show": "always"
  141.         },
  142.         "scrollbar": {
  143.             "show": null
  144.         }
  145.     },
  146.     "terminal": {
  147.         "alternate_scroll": "off",
  148.         "blinking": "on",
  149.         "copy_on_select": false,
  150.         "keep_selection_on_copy": false,
  151.         "dock": "bottom",
  152.         "default_width": 640,
  153.         "default_height": 320,
  154.         "env": {
  155.             "FIG_NEW_SESSION": "1",
  156.             "Q_NEW_SESSION": "1"
  157.         },
  158.         "detect_venv": {
  159.             "on": {
  160.                 "directories": [".env", "env", ".venv", "venv"],
  161.                 "activate_script": "default"
  162.             }
  163.         },
  164.         "font_size": 15,
  165.         "line_height": "comfortable",
  166.         "minimum_contrast": 45,
  167.         "button": false,
  168.         "shell": "system",
  169.         "toolbar": {
  170.             "breadcrumbs": false
  171.         },
  172.         "working_directory": "current_project_directory",
  173.         "scrollbar": {
  174.             "show": null
  175.         }
  176.     },
  177.     // "cursor_shape": "underline",
  178.     "scrollbar": {
  179.         "show": "never",
  180.         "cursors": true
  181.     },
  182.     // Tipos de arquivo
  183.     "file_types": {
  184.         "css": ["*.css"],
  185.         "json": [".prettierrc"],
  186.         "dotenv": [".env.*"]
  187.     }
  188. }
Tags: dotfile Zed
Advertisement
Add Comment
Please, Sign In to add comment