WIP: add jujutsu (w/ Delta)
Some checks failed
ci/woodpecker/push/check Pipeline failed

This commit is contained in:
Bruno BELANYI 2025-02-26 10:51:31 +00:00
parent 0422859f85
commit b44ee6cebf
3 changed files with 119 additions and 0 deletions

View file

@ -46,5 +46,25 @@ in
};
};
};
programs.jujutsu = lib.mkIf cfg.jujutsu.enable {
settings = {
merge-tools = {
delta = {
# Errors are signaled with exit codes greater or equal to 2
diff-expected-exit-codes = [ 0 1 ];
};
};
ui = {
diff = {
# Delta expects a `git diff` input
format = "git";
};
pager = "delta";
};
};
};
};
}