feat(jujutsu): enable jujutsu shell autocompletion

This commit is contained in:
2026-05-24 10:07:24 +02:00
parent 206b170d3e
commit 91dc8e5070
5 changed files with 16 additions and 3 deletions
+6
View File
@@ -40,6 +40,12 @@ in {
enable = mkEnableOption "Enables jj-cz";
alias = mkEnableOption "Enable `jj cz` as an alias to `jj-cz`";
};
# used in my shell .nix files
shellCompletion = mkOption {
description = "Enable Jujutsu shell completion";
type = types.bool;
default = true;
};
};
config = mkIf cfg.enable {