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.
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.
Frequently Asked Questions
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.
Citations (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
Related on TokRepo
Source & Thanks
Created by Zed Industries. Licensed under AGPL-3.0.
zed — ⭐ 78,300+
Discussion
Related Assets
HumHub — Open-Source Enterprise Social Network
A flexible, open-source social networking platform built on Yii2 for creating private communities, intranets, and collaboration spaces within organizations.
Dolibarr — Open-Source ERP & CRM for Business Management
A modular open-source ERP and CRM application written in PHP for managing contacts, invoices, orders, inventory, accounting, and more from a single web interface.
PrestaShop — Open-Source PHP E-Commerce Platform
A widely adopted open-source e-commerce platform written in PHP with a rich module marketplace, multi-language support, and a strong European user base.