This article introduces the user experience of the Windows version of the Zed editor, pointing out that it outperforms VSCode in resource usage and smoothness, and natively supports WSL and SSH remote development. However, it also suffers from imperfect Emacs keymap support and a poor Git visualization experience. Based on this, specific personalization settings are shared, including themes, fonts, and configuration files.
Zed editor has also released a Windows version. After trying it out, it indeed uses fewer resources and runs smoother than VS Code. It just goes to show that any compiled language can easily beat JS, let alone Rust. Moreover, this editor is more inclined to use the GPU, so the CPU usage is relatively low. The pleasant surprise is the native support for WSL and SSH remote development, but the support for Emacs keymap is still in the beta stage and the Git visualization is terribly done. After some tinkering, here is my configuration.
Download directly from the official website for installation:
// Zed settings // // For information on how to configure Zed, see the Zed // documentation: https://zed.dev/docs/configuring-zed // // To see all of Zed's default settings without changing your // custom settings, run `zed: open default settings` from the // command palette (cmd-shift-p / ctrl-shift-p) { "terminal":{ "shell":{ "program":"powershell.exe" } }, "icon_theme":"Catppuccin Frappé", "project_panel":{ "dock":"left" }, "vim_mode":false, "buffer_font_family":"Fira Code", "ui_font_features":{ "calt":true }, "buffer_font_features":{ "calt":true }, "languages":{ "Rust":{ "inlay_hints":{ "enabled":true } } }, "diagnostics":{ "inline":{ "enabled":true } },