Home Notes Skills

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
Shareframe interface showing a simple editor and live share preview
Tools

A Simple OG Image Tool I Built for Client Work

I kept running into the same annoyance when delivering client projects, so I spent a few days building a simple open source OG image generator with AI agents.

Read more
Pages CMS interface showing the visual editor and content management
Tools

How I Manage Astro Content with Pages CMS

Most headless CMS setups are overkill for static sites. Here is how I configure Pages CMS and use it daily to edit Astro content directly on GitHub.

Read more

Get the weekly notes

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

Link copied to clipboard!