From c457df3f03db84c81044cf8b2950a06de4ff9fcb Mon Sep 17 00:00:00 2001 From: "naps62-yolo (agent)" Date: Mon, 17 Aug 2026 07:47:11 +0100 Subject: [PATCH] feat(home): add zed, cursor, and vscodium (#1) --- home/common/programs/default.nix | 1 + home/common/programs/editors.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 home/common/programs/editors.nix diff --git a/home/common/programs/default.nix b/home/common/programs/default.nix index cc9cbfa..e394a39 100644 --- a/home/common/programs/default.nix +++ b/home/common/programs/default.nix @@ -11,6 +11,7 @@ ./zsh.nix ./nix.nix ./neovim + ./editors.nix ./rust.nix ./elixir.nix ./nodejs.nix diff --git a/home/common/programs/editors.nix b/home/common/programs/editors.nix new file mode 100644 index 0000000..5949621 --- /dev/null +++ b/home/common/programs/editors.nix @@ -0,0 +1,12 @@ +{ 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 + ]; +}