Skip to content

Instantly share code, notes, and snippets.

@velipso
Last active February 18, 2025 19:36
Show Gist options
  • Save velipso/8f3c1a3a8e767f158291e83dc4da04d8 to your computer and use it in GitHub Desktop.
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.

There is still an open issue to fix the buggy auto-indent behavior.

Also, I can't get the damn thing to work with Makefiles, so I still use Sublime for that.

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

{
  "features": {
    "edit_prediction_provider": "none"
  },
  "theme": "Atelier Dune Dark",
  "buffer_font_size": 21,
  "buffer_line_height": {
    "custom": 1.17
  },
  "git": {
    "git_gutter": "hide",
    "inline_blame": {
      "enabled": false
    }
  },
  "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"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment