refactor: rename git cleanup alias to 'tidy' in fish and home.nix configurations 🎨

This commit is contained in:
DannyDannyDanny 2026-02-25 12:57:41 +01:00
parent d3e1fbb85d
commit 9c816b95ce
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@
enable = true;
shellAliases = {
cdtmp = "cd $(mktemp -d)";
gclean = "git cleanup-branches";
gclean = "git tidy";
theme = "bash ~/dotfiles/scripts/theme.sh";
music = "mpv --no-video --log-file=~/music_history.log \"$(find $HOME/Music/ -type f \\( -name '*.mp3' -o -name '*.wav' -o -name '*.flac' -o -name '*.m4a' -o -name '*.ogg' \\) | fzf)\"";
weather = "curl wttr.in/?T";

View file

@ -75,7 +75,7 @@
editor = "nvim";
};
alias = {
"cleanup-branches" = "!bash ~/dotfiles/scripts/git-cleanup-branches.sh";
"tidy" = "!bash ~/dotfiles/scripts/git-cleanup-branches.sh";
};
};
};