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 + ]; +}