Swap jj text editor for zed as it is much much faster to launch than vscode

This commit is contained in:
Tyler Beckman 2024-12-28 21:13:08 -07:00
parent cd17fbc9f7
commit c0a0046260
Signed by: Ty
GPG key ID: 2813440C772555A4

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, config, ... }:
{
programs.jujutsu = {
enable = true;
@ -20,7 +20,7 @@
pager = "delta";
default-command = "log";
editor = "codium --wait";
editor = lib.mkIf (config.meta.home-manager.desktop.enable) "zeditor --wait";
diff = {
format = "git";
@ -32,4 +32,4 @@
};
};
};
}
}