feat: move out aliases

This commit is contained in:
2024-06-20 18:32:34 +01:00
parent 983caa83dd
commit 94c298a26f
2 changed files with 8 additions and 3 deletions

3
files/home/.aliases Normal file
View File

@@ -0,0 +1,3 @@
alias j="z"
alias fd="command -v fdfind"
alias dots=$DOTFILES/install

View File

@@ -85,6 +85,7 @@ if [ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]; then
. $HOME/.nix-profile/etc/profile.d/nix.sh . $HOME/.nix-profile/etc/profile.d/nix.sh
fi fi
# _ _ _ ____ # _ _ _ ____
# U /"\ u |"| ___ U /"\ u / __"| u # U /"\ u |"| ___ U /"\ u / __"| u
# \/ _ \/ U | | u |_"_| \/ _ \/ <\___ \/ # \/ _ \/ U | | u |_"_| \/ _ \/ <\___ \/
@@ -93,6 +94,7 @@ fi
# \\ >> // \\.-,_|___|_,-.\\ >> )( (__) # \\ >> // \\.-,_|___|_,-.\\ >> )( (__)
# (__) (__)(_")("_)\_)-' '-(_/(__) (__)(__) # (__) (__)(_")("_)\_)-' '-(_/(__) (__)(__)
# #
alias j="z"
alias fd="command -v fdfind" if [ -f ~/.aliases ]; then
alias dots="$DOTFILES/install" source ~/.aliases
fi