ConfigsApr 2, 2026·3 min read

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.

TL;DR
Zed is a Rust-built editor with GPU rendering, multiplayer editing, and AI assistant.
§01

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.

§02

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.

§03

How to use

  1. Install Zed on your platform:
# macOS
brew install --cask zed

# Linux
curl -f https://zed.dev/install.sh | sh
  1. Configure your AI provider in Settings (Cmd+,):
{
  "assistant": {
    "default_model": {
      "provider": "anthropic",
      "model": "claude-sonnet-4-20250514"
    }
  }
}
  1. Use the AI assistant: select code, press Ctrl+Enter to ask a question, or open the assistant panel for longer conversations.
§04

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
}
§05

Related on TokRepo

§06

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

How does Zed compare to VS Code in performance?+

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.

Which AI models does Zed support?+

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.

Does Zed work on Windows?+

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.

Can I use Vim keybindings in Zed?+

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.

Is Zed free to use?+

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)
🙏

Source & Thanks

Created by Zed Industries. Licensed under AGPL-3.0.

zed — ⭐ 78,300+

Discussion

Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.

Related Assets