Created
October 3, 2025 17:41
-
-
Save evilpilaf/62813b64e4947eca3f260750b9ccd3e4 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
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"context_servers": { | |
"honeycomb": { | |
"source": "custom", | |
"enabled": true, | |
"command": "npx", | |
"args": [ | |
"-y", | |
"mcp-remote", | |
"https://mcp.eu1.honeycomb.io/mc" | |
], | |
"env": {} | |
}, | |
"postgres-context-server": { | |
"source": "extension", | |
"enabled": true, | |
"settings": { | |
"database_url": "postgresql://loyalty:loyalty@localhost:5432/loyalty" | |
} | |
} | |
}, | |
"agent": { | |
"always_allow_tool_actions": false, | |
"play_sound_when_agent_done": true, | |
"default_model": { | |
"provider": "anthropic", | |
"model": "claude-sonnet-4.5" | |
} | |
}, | |
"edit_predictions": { | |
"mode": "subtle", | |
"copilot": { | |
"proxy": null, | |
"proxy_no_verify": null, | |
"enterprise_uri": null | |
}, | |
"enabled_in_text_threads": false | |
}, | |
"features": { | |
"edit_prediction_provider": "none" | |
}, | |
"ssh_connections": [ | |
{ | |
"host": "mauropi.local", | |
"username": "mauropi", | |
"projects": [ | |
{ | |
"paths": [ | |
"/home/mauropi" | |
] | |
} | |
] | |
} | |
], | |
"icon_theme": "VSCode Great Icons Theme", | |
"theme": "One Light", | |
"tab_size": 2, | |
"show_edit_predictions": false, | |
"show_wrap_guides": true, | |
"wrap_guides": [ | |
150 | |
], | |
"use_system_window_tabs": true, | |
"soft_wrap": "preferred_line_length", | |
"preferred_line_length": 140, | |
"buffer_font_size": 14, | |
"buffer_font_family": "OpenDyslexic Nerd Font", | |
"buffer_font_features": { | |
"calt": true | |
}, | |
"buffer_line_height": "comfortable", | |
"autosave": "on_focus_change", | |
"format_on_save": "off", | |
"vim_mode": false, | |
"terminal": { | |
"font_family": "MonaspiceNe Nerd Font", | |
"blinking": "on" | |
}, | |
"formatter": "language_server", | |
"experimental.theme_overrides": { | |
"syntax": { | |
"comment": { | |
"color": "#586e75", | |
"font_style": "oblique" | |
}, | |
"string.doc": { | |
"color": "#6a6a6a", | |
"font_style": "oblique" | |
} | |
} | |
}, | |
"base_keymap": "JetBrains", | |
"project_panel": { | |
"auto_fold_dirs": false, | |
"button": true, | |
"dock": "left", | |
"file_icons": true, | |
"folder_icons": true, | |
"indent_guides": { | |
"show": "always" | |
} | |
}, | |
"git": { | |
"inline_blame": { | |
"enabled": false | |
// Sets a delay after which the inline blame information is shown. | |
// Delay is restarted with every cursor movement. | |
// "delay_ms": 600 | |
} | |
}, | |
"languages": { | |
"Nix": { | |
"language_servers": [ | |
"nixd" | |
] | |
}, | |
"PHP": { | |
"language_servers": [ | |
"intelephense", | |
"phpcs", | |
"!phpactor" | |
] | |
} | |
}, | |
"load_direnv": "direct", | |
"file_types": { | |
"XML": [ | |
"csproj", | |
"slnx", | |
"props" | |
], | |
"YAML": [ | |
"yaml.template" | |
], | |
"ENV": [ | |
".env", | |
".env.*" | |
] | |
}, | |
"file_scan_exclusions": [ | |
"**/.git", | |
"**/.svn", | |
"**/.hg", | |
"**/.jj", | |
"**/CVS", | |
"**/.DS_Store", | |
"**/Thumbs.db", | |
"**/.classpath", | |
"**/.settings", | |
"**/node_modules", | |
"**/bin", | |
"**/obj" | |
], | |
"journal": { | |
"hour_format": "hour24" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment