I spent years jumping between VS Code and other editors, always looking for something that felt faster. Then I found Zed.
Zed is a code editor built from scratch in Rust with GPU-accelerated rendering, built-in AI features, and real-time collaboration. It starts in under 500 milliseconds on a cold boot and processes keystrokes in under one millisecond. On a day-to-day basis, you just feel the difference.
For a long time, Windows users were left out. Zed launched on macOS first, then Linux. Windows support came later — but as of late 2025, official stable builds are available directly from zed.dev, and the experience is solid.
If you’re on Windows and want to try one of the fastest code editors available right now, this guide walks you through everything — system requirements, installation methods, and what to do if something goes wrong.
What Is Zed?
Zed is an open-source code editor created by Nathan Sobo, one of the original creators of Atom. It’s written in Rust and supports Linux, macOS, and Windows.</cite>
Unlike Atom or VS Code, Zed doesn’t run on Electron. It talks directly to the GPU for rendering, which is why it feels so fast. The stable 1.0.0 release landed in April 2026</cite>, and the editor is free to use — though some AI features require a paid plan.
Key features include:
- GPU-accelerated text rendering
- Built-in AI assistant and code completion
- Real-time multiplayer collaboration
- Extensions via WebAssembly
- Git integration
- Optional Vim keybindings
System Requirements for Windows
Before you install anything, check that your machine meets the minimum requirements.
Zed requires a 64-bit operating system and supports machines with x64 (Intel, AMD) or Arm64 (Qualcomm) processors. For graphics, you need a GPU that supports DirectX 11 — which covers most PCs made after 2012. You also need a current driver from NVIDIA, AMD, Intel, or Qualcomm — the Microsoft Basic Display Adapter is not supported.</cite>
Zed also requires Windows 10 version 1809 or later with Vulkan-capable graphics drivers.</cite>
In short, if you’re on Windows 10 (version 1809+) or Windows 11 with a reasonably modern GPU and up-to-date drivers, you’re good to go.
One common issue worth knowing upfront: Zed uses Vulkan as its graphics API on Windows. If Zed fails to launch, Vulkan is a common cause. Updating GPU drivers often resolves this.</cite>
Method 1: Direct Download (Recommended for Most Users)
The simplest way to install Zed on Windows is to download the installer directly from the official website.
Step 1 — Go to the download page
Open your browser and go to zed.dev/download. You’ll see two options:
- Stable — the production-ready release. Choose this for daily use.
- Preview — receives new features about one week earlier. More experimental.
For most users, pick Stable.
Step 2 — Download the installer
Click the Windows download button. The Windows build supports Intel/AMD processors.</cite> The file will be a .exe installer.
Step 3 — Run the installer
Double-click the downloaded file and follow the installation prompts. The installer handles PATH setup automatically, so you can launch Zed from the terminal after installation.
Step 4 — Launch Zed
Open Zed from the Start menu or by typing zed in your terminal. On first launch, Zed may ask you to sign in for AI features — you can skip this and use it as a plain editor right away.
Method 2: Install via winget (Package Manager)
If you prefer installing software through the command line, Windows Package Manager (winget) is the cleanest option. It also makes future updates easier to manage.
Step 1 — Open PowerShell or Command Prompt
Right-click the Start button and choose “Windows PowerShell” or “Terminal”. You don’t need admin rights for this.
Step 2 — Run the install command
winget install Zed.Zedwinget will download and install Zed automatically. Once it’s done, you can launch Zed from the terminal by typing:
zedStep 3 — Update Zed later
When a new version is released, updating is a single command:
winget upgrade Zed.ZedThis is the most convenient long-term option if you want automatic, no-fuss updates.
Method 3: Install via Scoop
If you use Scoop as your Windows package manager, you can install Zed through the extras bucket.
Step 1 — Make sure Scoop is installed
If you don’t have Scoop yet, install it by running this in PowerShell:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-ExpressionStep 2 — Add the extras bucket and install
scoop bucket add extras
scoop install zedThe Scoop extras manifest pulls stable builds directly from the official Zed upstream release.</cite>
After Installation: First Steps
Once Zed is open, here’s what to do next.
Open a folder
Use Ctrl+Shift+O to open a project folder, or drag a folder onto the Zed window. Zed reads your entire project structure and sets up language support automatically.
Open settings
Press Ctrl+, to open your settings file. Zed uses a JSON-based configuration system. This is where you set your theme, font size, keybindings, and editor behavior.
A basic settings example:
json
{
"theme": "One Dark",
"buffer_font_size": 14,
"vim_mode": false,
"format_on_save": "on"
}Install extensions
Press Ctrl+Shift+X to open the Extensions panel. Zed extensions work on Windows with no special steps — install them from the Extensions panel and get back to coding.</cite>
Enable AI features (optional)
Zed has a built-in AI assistant. You can use it with a Zed Pro subscription or bring your own API key (BYOK) for providers like Anthropic or OpenAI. Open the AI panel with Ctrl+? to get started.
Troubleshooting Common Issues
Zed doesn’t launch at all
This is almost always a graphics driver issue. Check the Zed log at C:\Users\YOU\AppData\Local\Zed\logs\Zed.log for Vulkan-related errors. Updating your GPU driver often resolves this.</cite>
If your GPU doesn’t support DirectX 11 or Vulkan, the official stable build won’t run. Community-maintained OpenGL builds are available for systems where Vulkan/DX11 isn’t available.</cite> Search for “zed-windows-builds” on GitHub to find them.
Zed launches but crashes immediately
If there’s nothing Vulkan-related in the logs and you have Bandicam installed, try uninstalling it. Zed is currently not compatible with Bandicam.</cite>
The zed command isn’t recognized in the terminal
If you installed via the direct download, try restarting your terminal after installation. The installer adds Zed to your PATH, but an open terminal session won’t pick that up until it’s restarted.
Extensions aren’t installing
Make sure you’re on a current Stable or Preview build. Older pre-release Windows builds occasionally had extension issues that have since been resolved.
Stable vs Preview: Which Should You Install?
The Preview release receives new features one week earlier than Stable.</cite> If you want to try new things early and don’t mind occasional rough edges, go with Preview. If you’re using Zed for daily work, Stable is the right choice.
You can switch between the two at any time — just download the other installer from zed.dev/download and run it. Your settings carry over.
FAQ
Is Zed free on Windows?
Yes. Zed itself is free and open-source. Some AI features require a Zed Pro subscription or your own API key, but the core editor is completely free.
Does Zed support Windows 10?
Yes. Zed requires Windows 10 version 1809 or later.</cite> Windows 11 also works fine.
Can I use Zed without a Vulkan-compatible GPU?
The official builds require Vulkan/DirectX 11 support. If your GPU doesn’t support it, community OpenGL builds are available as an alternative, though they’re unofficial.
Does Zed work with my existing VS Code extensions?
No. Zed has its own extension ecosystem built on WebAssembly. It’s not compatible with VS Code extensions, but it has a growing library of its own extensions covering most major languages and tools.
How does Zed compare to VS Code in performance?
Zed is meaningfully faster — especially startup time and keystroke response. It starts in under 500ms and processes keystrokes in under 1ms. VS Code carries Electron overhead that Zed avoids entirely by rendering directly through the GPU.
Is Zed safe to install on Windows?
Yes. Zed is open-source (GPL-3.0/Apache 2.0), available on GitHub, and the installer comes directly from zed.dev. There’s nothing unusual about the installation.
Can I run Zed on Windows ARM (Qualcomm)?
Yes. Zed supports Arm64 (Qualcomm) processors on Windows.</cite>
Editors Final Thoughts
Friends, I used the Zed editor on my Windows installation, and it really does live up to its claims; it opens almost at lightning speed. It also includes agents for Cloud, Google, Chat GPT, etc. You can work with any agent you want. It even has its own agent. Of course, the limits increase when you get the Pro version. I recommend trying it for a month. There’s also a 14-day free trial version; I think you should try it, I’m sure you’ll be satisfied.
