This commit is contained in:
2025-10-27 23:10:11 +09:00
parent 726fce7949
commit 9d5ffed340
7 changed files with 71 additions and 44 deletions

View File

@@ -0,0 +1,20 @@
{
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]
'';
};
};
programs.fish.interactiveShellInit = ''
if test -f $HOME/.config/fish/kube.fish
source $HOME/.config/fish/kube.fish
end
'';
}