Alex Spinov VS Code is Electron — a web browser pretending to be a text editor. Zed is built in Rust with GPU...
VS Code is Electron — a web browser pretending to be a text editor. Zed is built in Rust with GPU rendering — it opens instantly and never lags.
| VS Code | Zed | |
|---|---|---|
| Startup time | 2-5 seconds | 0.1 seconds |
| RAM usage | 300-800MB | 100-200MB |
| Large file (100MB) | Freezes | Smooth |
| Rendering | DOM-based | GPU (Metal/Vulkan) |
| Extension overhead | Significant | Minimal (native) |
| Built with | Electron (JS) | Rust + GPUI |
Open multiple files in a single buffer and edit across them simultaneously. Like VS Code multi-cursor but across files.
// Type a prompt inline:
// /edit: refactor this function to use async/await
// Zed rewrites the code in place
Built-in AI that edits code inline — no sidebar, no copy-paste.
Real-time collaboration like Google Docs:
ctrl+` to toggle terminal
Split terminals
Search terminal output
// settings.json
{ "vim_mode": true }
Full Vim emulation with visual mode, macros, and registers.
// ~/.config/zed/settings.json
{
"theme": "One Dark",
"ui_font_size": 16,
"buffer_font_size": 14,
"buffer_font_family": "JetBrains Mono",
"format_on_save": "on",
"formatter": "language_server",
"tab_size": 2,
"soft_wrap": "editor_width",
"vim_mode": false,
"inlay_hints": { "enabled": true },
"languages": {
"TypeScript": {
"formatter": { "external": { "command": "biome", "arguments": ["format", "--stdin-file-path", "{buffer_path}"] } }
}
}
}
Zed has a growing extension ecosystem:
Looking for developer tools? I build web scraping and data solutions. Email spinov001@gmail.com or check my Apify tools.