Love your
editor again
Zed is a minimal code editor crafted for speed and collaboration with humans and AI.
Available for macOS, Linux, and Windows
import { useState } from 'react';
import { Button } from './components';
interface AppProps {
title: string;
description?: string;
}
export default function App({ title }: AppProps) {
const [count, setCount] = useState(0);
return (
<div className="container">
<h1>{title}</h1>
<Button onClick={() => setCount(c => c + 1)}>
Count: {count}
</Button>
</div>
);
}Fast
Written from scratch in Rust to efficiently leverage multiple CPU cores and your GPU.
Intelligent
Integrate LLMs into your workflow to generate, transform, and analyze code.
Collaborative
Chat with teammates, write notes together, and share your screen and project.
“Yes! Now I can have shortcuts to run and debug tests. Ever since snippets were added, Zed has all of the features I could ask for.”
José Valim
Creator of Elixir
“I've had my mind blown using Zed with Claude 3.5 Sonnet. I wrote up a few sentences around a research idea and Claude 3.5 Sonnet delivered a first pass in seconds.”
Ethan Perez
Adversarial Robustness Research Lead
“This is obviously a product built with love and care. I can tell it from two minutes of using it. Kudos to the team.”
Dan Abramov
React Core team member
“My god it is so fast. Boot time, UI interaction, typing latency. I feel it. I knew VS Code always felt sluggish, but I didn't realize how good things could really be.”
Matt Baker
Principal Engineer
“I've started using Zed, and I love it. Lots of subtle innovations (multibuffers, inlay hints, collaboration). Thoughtful, precise design. And the speed, the speed!”
Mike Bostock
Creator of D3.js
Zed for Windows
It's here — fast, native, and ready for your team.
Debugger
Built on the Debug Adapter Protocol (DAP), native support for debugging across multiple programming languages.
Agentic Editing
Zed natively supports agentic editing, enabling fluent collaboration between humans and AI.
Native Git Support
First-class support for staging, committing, pulling, pushing, viewing diffs, and many more Git operations.
Edit Prediction
A tool that anticipates your next move. Powered by Zeta, our new open-source, open-data language model.
Extensions
Browse the extension ecosystem to add support for new languages, debuggers, themes, and tools — or build your own.
Browse all extensionsA Letter from the Team
Programming and the tools we use to do so are changing. When we started building Atom over 15 years ago, we set out to create a text editor that was both approachable and deeply extensible.
That journey led us through Electron, Tree-sitter, and now to Zed — a code editor built from the ground up in Rust for performance, with native support for collaboration and AI.
We believe the future of programming lies in fluent collaboration between humans and AI. Zed is our vision for what that looks like: an editor that's fast enough to keep up with your thoughts, intelligent enough to assist you, and open enough to grow with the community.
Nathan Sobo
CEO
Antonio Scandurra
CTO
Max Brunsfeld
Co-founder