Cette page est affichée en anglais. Une traduction française est en cours.
SkillsApr 2, 2026·3 min de lecture

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.

Prêt pour agents

Installation avec revue préalable

Cet actif nécessite une revue. Le prompt copié demande un dry-run, affiche les écritures, puis continue seulement après confirmation.

Needs Confirmation · 64/100Policy : confirmer
Surface agent
Tout agent MCP/CLI
Type
Skill
Installation
Single
Confiance
Confiance : Established
Point d'entrée
zed-editor.md
Commande avec revue préalable
npx -y tokrepo@latest install e17aff9c-59a5-4304-8d07-110cb9f3cc7d --target codex

Dry-run d'abord, confirmez les écritures, puis lancez cette commande.

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.

Questions fréquentes

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.

Sources citées (3)
🙏

Source et remerciements

Created by Zed Industries. Licensed under AGPL-3.0.

zed — ⭐ 78,300+

Fil de discussion

Connectez-vous pour rejoindre la discussion.
Aucun commentaire pour l'instant. Soyez le premier à partager votre avis.

Actifs similaires