diff --git a/modules/programs/jujutsu.nix b/modules/programs/jujutsu.nix index aca23550..32cb1e34 100644 --- a/modules/programs/jujutsu.nix +++ b/modules/programs/jujutsu.nix @@ -61,16 +61,16 @@ in { }; programs.bash.initExtra = mkIf cfg.enableBashIntegration '' - source <(${pkgs.jujutsu}/bin/jj debug completion) + source <(${pkgs.jujutsu}/bin/jj util completion) ''; programs.zsh.initExtra = mkIf cfg.enableZshIntegration '' - source <(${pkgs.jujutsu}/bin/jj debug completion --zsh | sed '$d') + source <(${pkgs.jujutsu}/bin/jj util completion --zsh | sed '$d') compdef _jj ${pkgs.jujutsu}/bin/jj ''; programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration '' - ${pkgs.jujutsu}/bin/jj debug completion --fish | source + ${pkgs.jujutsu}/bin/jj util completion --fish | source ''; }; }