Swap jj text editor for zed as it is much much faster to launch than vscode
This commit is contained in:
parent
cd17fbc9f7
commit
c0a0046260
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
{
|
{
|
||||||
programs.jujutsu = {
|
programs.jujutsu = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
pager = "delta";
|
pager = "delta";
|
||||||
default-command = "log";
|
default-command = "log";
|
||||||
|
|
||||||
editor = "codium --wait";
|
editor = lib.mkIf (config.meta.home-manager.desktop.enable) "zeditor --wait";
|
||||||
|
|
||||||
diff = {
|
diff = {
|
||||||
format = "git";
|
format = "git";
|
||||||
|
@ -32,4 +32,4 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue