Files
nixos-config/home/common/programs/editors.nix
T
naps62-yolo c457df3f03
CI / eval (push) Failing after 1m35s
CI / lint (push) Successful in 30s
feat(home): add zed, cursor, and vscodium (#1)
2026-08-17 07:47:11 +01:00

13 lines
352 B
Nix

{ pkgs, ... }:
{
# Trialling GUI editors alongside neovim, for reviewing agent-generated
# diffs. Drop the ones that don't stick.
home.packages = with pkgs; [
zed-editor
code-cursor
# VSCodium and Cursor both default to Open VSX, which carries
# GitHub.vscode-pull-request-github. Zed has no PR review at all.
vscodium
];
}