diff --git a/users/profiles/shells/bash.nix b/users/profiles/shells/bash.nix index de58b78..7ba4abd 100644 --- a/users/profiles/shells/bash.nix +++ b/users/profiles/shells/bash.nix @@ -5,6 +5,9 @@ bash = { enable = true; enableVteIntegration = true; + initExtra = '' + source <(kitty + complete setup bash) + ''; }; starship.enableBashIntegration = true; diff --git a/users/profiles/shells/fish.nix b/users/profiles/shells/fish.nix index ca93b5f..3f73898 100644 --- a/users/profiles/shells/fish.nix +++ b/users/profiles/shells/fish.nix @@ -6,6 +6,9 @@ enable = true; functions = { }; shellAbbrs = { }; + interactiveShellInit = '' + kitty + complete setup fish | source + ''; }; starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true;