Skip to content

Instantly share code, notes, and snippets.

@velipso
Last active August 31, 2025 21:34
Show Gist options
  • Select an option

  • Save velipso/8f3c1a3a8e767f158291e83dc4da04d8 to your computer and use it in GitHub Desktop.

Select an option

Save velipso/8f3c1a3a8e767f158291e83dc4da04d8 to your computer and use it in GitHub Desktop.
Zed settings to disable as many features as possible

I love zed, but boy do they like cramming in a bunch of annoying features.

It's taken me a while to track down how to disable some of them, so here are my current settings:

Requires:

{
  "features": {
    "edit_prediction_provider": "none"
  },
  "theme": "Zed Legacy: Atelier Dune Dark",
  "buffer_font_size": 21.0,
  "buffer_line_height": {
    "custom": 1.17
  },
  "git": {
    "git_gutter": "hide",
    "inline_blame": {
      "enabled": false
    }
  },
  "gutter": {
    "line_numbers": true,
    "runnables": false,
    "breakpoints": false,
    "folds": true,
    "min_line_number_digits": 4
  },
  "hover_popover_enabled": false,
  "inlay_hints": {
    "enabled": false,
    "show_type_hints": false,
    "show_parameter_hints": false,
    "show_other_hints": false,
    "show_background": false,
    "edit_debounce_ms": 700,
    "scroll_debounce_ms": 50
  },
  "buffer_font_family": "Menlo",
  "edit_predictions": {
    "disabled_globs": ["*"]
  },
  "show_completions_on_input": false,
  "show_edit_predictions": false,
  "enable_language_server": false,
  "use_autoclose": false,
  "wrap_guides": [100],
  "tab_size": 2,
  "telemetry": {
    "diagnostics": false,
    "metrics": false
  },
  "preview_tabs": {
    "enabled": false
  },
  "format_on_save": "off",
  "extend_comment_on_newline": false,
  "search": {
    "whole_word": false,
    "case_sensitive": true,
    "include_ignored": false,
    "regex": true
  },
  "drop_target_size": 0.05,
  "soft_wrap": "none",
  "terminal": {
    "shell": {
      "program": "/opt/homebrew/bin/fish"
    }
  },
  "disable_ai": true,
  "auto_indent": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment