feat(home): add zed, cursor, and vscodium (#1)
CI / eval (push) Failing after 1m35s
CI / lint (push) Successful in 30s

This commit was merged in pull request #1.
This commit is contained in:
2026-08-17 07:47:11 +01:00
parent f7947375e3
commit c457df3f03
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -11,6 +11,7 @@
./zsh.nix ./zsh.nix
./nix.nix ./nix.nix
./neovim ./neovim
./editors.nix
./rust.nix ./rust.nix
./elixir.nix ./elixir.nix
./nodejs.nix ./nodejs.nix
+12
View File
@@ -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
];
}