Zed — High-Performance AI Code Editor
GPU-accelerated editor built in Rust with multiplayer editing and built-in AI assistant. By the creators of Atom. 78K+ stars.
Instalación con revisión previa
Este activo requiere revisión. El prompt copiado pide dry-run, muestra escrituras y continúa solo tras confirmación.
npx -y tokrepo@latest install e17aff9c-59a5-4304-8d07-110cb9f3cc7d --target codexPrimero dry-run, confirma las escrituras y luego ejecuta este comando.
What it is
Zed is a high-performance code editor built from scratch in Rust by the team that created Atom and Tree-sitter. It uses GPU acceleration for rendering, resulting in frame rates and input latency that traditional Electron-based editors cannot match. The editor includes built-in multiplayer editing and an integrated AI assistant.
Zed targets developers who find VS Code or JetBrains IDEs too slow and want a native-speed editor with modern AI features. It runs on macOS and Linux.
How it saves time or tokens
Zed's AI assistant connects directly to language models (OpenAI, Anthropic, or custom providers) within the editor. Instead of switching to a separate chat window, you highlight code, ask the assistant to refactor or explain it, and the result appears inline. The editor's speed means less waiting for UI responsiveness, and the multiplayer feature eliminates the back-and-forth of screen sharing during pair programming.
How to use
- Install Zed on your platform:
# macOS
brew install --cask zed
# Linux
curl -f https://zed.dev/install.sh | sh
- Configure your AI provider in Settings (Cmd+,):
{
"assistant": {
"default_model": {
"provider": "anthropic",
"model": "claude-sonnet-4-20250514"
}
}
}
- Use the AI assistant: select code, press Ctrl+Enter to ask a question, or open the assistant panel for longer conversations.
Example
// Zed settings.json — configure AI and editor preferences
{
"assistant": {
"default_model": {
"provider": "openai",
"model": "gpt-4o"
}
},
"theme": "One Dark",
"buffer_font_size": 14,
"format_on_save": "on",
"vim_mode": true
}
Related on TokRepo
- AI coding tools -- Compare AI-powered editors and coding assistants
- Featured workflows -- Discover curated developer tools and configurations
Common pitfalls
- Zed's extension ecosystem is smaller than VS Code's. Check if your must-have language servers and extensions are available before switching full-time.
- Multiplayer editing requires a Zed account and internet connection. For offline-only workflows, the core editor works fine but collaboration features are unavailable.
- AI assistant configuration varies by provider. Anthropic models need an API key set in the settings, and token costs apply based on your provider's pricing.
Preguntas frecuentes
Zed renders with the GPU using a custom framework called GPUI, written in Rust. This gives it significantly lower input latency and higher frame rates compared to VS Code, which runs on Electron. For large files and fast typing, the difference is noticeable. Zed also starts faster due to its native binary.
Zed supports OpenAI (GPT-4o, GPT-4), Anthropic (Claude Sonnet, Claude Opus), Google (Gemini), and Ollama for local models. You configure the provider and model in Zed's settings.json file. Multiple providers can be configured simultaneously.
As of early 2026, Zed supports macOS and Linux. Windows support has been in development. Check the official Zed downloads page for the latest platform availability.
Yes. Zed has a built-in Vim mode that you enable by setting vim_mode to true in your settings.json. It supports common Vim motions, visual mode, and command mode. The implementation covers most daily Vim workflows.
Zed is open-source and free for individual use. The editor itself, including the AI assistant panel, is available at no cost. You pay only for the AI model API calls (to OpenAI, Anthropic, etc.) based on your own API keys. Zed offers optional paid plans for team collaboration features.
Referencias (3)
- Zed GitHub Repository— Zed is built in Rust using a custom GPU-based UI framework called GPUI
- Zed Official Website— Zed was created by the team behind Atom and Tree-sitter
- Anthropic API Documentation— Anthropic Claude models can be used as AI coding assistants via API
Relacionados en TokRepo
Fuente y agradecimientos
Created by Zed Industries. Licensed under AGPL-3.0.
zed — ⭐ 78,300+
Discusión
Activos relacionados
Zed — High-Performance Code Editor with AI Built-In
GPU-accelerated code editor written in Rust with native AI assistant, multi-player editing, and sub-millisecond latency. Supports Claude, GPT-4, and local models. 55,000+ GitHub stars.
Gatling — High-Performance Load Testing for Web Applications
Gatling is an open-source load and performance testing tool for web applications, built on Scala and Akka, that generates detailed HTML reports from code-defined test scenarios.
Echo — High Performance Minimalist Go Web Framework
Echo is a high performance, minimalist Go web framework. Clean API, automatic TLS, HTTP/2, data binding, middleware, and group routing. A strong alternative to Gin with excellent documentation and built-in features.
Apache APISIX — Cloud Native High-Performance API Gateway
Apache APISIX is a dynamic, real-time, high-performance API gateway built on NGINX and etcd, offering rich traffic management with a large plugin ecosystem and sub-millisecond routing updates.