Files
nixos-config/modules/home/fish/functions.nix
2026-05-08 00:00:24 +09:00

25 lines
437 B
Nix

{
programs.fish.functions = {
mkcd = {
body = ''
if test (count $argv) -eq 0
echo "Usage: mkcd <directory>"
return 1
end
mkdir -p $argv[1]
and cd $argv[1]
'';
};
fish_greeting = {
body = "";
};
};
programs.fish.interactiveShellInit = ''
if test -f $HOME/.config/fish/kube.fish
source $HOME/.config/fish/kube.fish
end
'';
}