diff --git a/users/modules/global/shells/fish.nix b/users/modules/global/shells/fish.nix index 3f73898..8addee3 100644 --- a/users/modules/global/shells/fish.nix +++ b/users/modules/global/shells/fish.nix @@ -8,6 +8,7 @@ shellAbbrs = { }; interactiveShellInit = '' kitty + complete setup fish | source + set -U fish_greeting ''; }; diff --git a/users/modules/global/shells/nushell.nix b/users/modules/global/shells/nushell.nix index c66abbf..4ba52bb 100644 --- a/users/modules/global/shells/nushell.nix +++ b/users/modules/global/shells/nushell.nix @@ -1,5 +1,10 @@ { ... }: { programs.nushell = { enable = true; + extraConfig = '' + $env.config = { + show_banner: false + } + ''; }; }