Home Notes

Why Zed is Becoming My Primary Editor

ohwire

ohwire

June 6, 2026 • 2 min read

A code editor display showing dark themed typescript code

For nearly a decade, VS Code has been the undisputed king of code editors. However, the team behind Atom and Tree-sitter has built Zed, a new Rust-based editor designed for extreme performance and collaborative coding. After using it as my daily driver for two weeks, here is my honest review.

The Speed Difference

The first thing you notice when opening Zed is the speed. It loads in a fraction of a second, files open instantly, and there is zero typing latency. Zed is GPU-accelerated and written in Rust, which allows it to utilize every CPU core efficiently.

If you are used to the slight micro-delays in Electron-based editors, Zed feels like a breath of fresh air.

Collaborative Coding

Zed was built from the ground up for real-time collaboration. It includes a built-in concept of “Channels” and “Projects” that multiple developers can join. You can see other developers’ cursors, edit the same file simultaneously, and share terminal outputs without needing to screen-share on Zoom.

VS Code vs. Zed: What’s Missing?

While the speed is incredible, Zed is still growing. Here are a few things that might hold you back:

  • Extension Ecosystem: While Zed has a package system, it is not as vast as VS Code’s.
  • Configuration: While Zed now includes a GUI settings editor for common options, many advanced configurations still require directly editing the settings.json file.
  • Complex UI Tooling: Some advanced debugging tools and git clients that integrate directly into VS Code are not yet fully implemented in Zed.

Here is an example of a typical settings.json configuration in Zed:

~/.config/zed/settings.json
{
"theme": "One Dark",
"font_family": "Fira Code",
"ui_font_size": 16,
"buffer_font_size": 16
}

Conclusion

If you want a blazing fast editor for writing code, writing prose, and collaborating with a peer, Zed is unmatched. It has earned a permanent spot on my dock.

Back to all notes
Share this article:

More to read

View Archives
A modern, minimalist tech illustration representing a terminal or powershell profile
Setup

Supercharge Your PowerShell for Maximum Productivity

Learn how developers use PowerShell profiles, custom aliases, and advanced functions to streamline their daily workflows.

Read more
A modern, minimalist tech illustration representing code formatting and linting
Tools

Why I Replaced ESLint and Prettier with Biome

A deep dive into Biome (the Rust-based toolchain), comparing its performance, simplicity, and formatting/linting rules to the traditional ESLint + Prettier stack.

Read more

Get the weekly notes

One email a week with the latest notes and cool finds. No spam.

Link copied to clipboard!