diff --git a/files/home/.aliases b/files/home/.aliases new file mode 100644 index 0000000..d481a10 --- /dev/null +++ b/files/home/.aliases @@ -0,0 +1,3 @@ +alias j="z" +alias fd="command -v fdfind" +alias dots=$DOTFILES/install diff --git a/files/home/.profile b/files/home/.profile index d82cc78..9f82a6a 100644 --- a/files/home/.profile +++ b/files/home/.profile @@ -85,6 +85,7 @@ if [ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]; then . $HOME/.nix-profile/etc/profile.d/nix.sh fi + # _ _ _ ____ # U /"\ u |"| ___ U /"\ u / __"| u # \/ _ \/ U | | u |_"_| \/ _ \/ <\___ \/ @@ -93,6 +94,7 @@ fi # \\ >> // \\.-,_|___|_,-.\\ >> )( (__) # (__) (__)(_")("_)\_)-' '-(_/(__) (__)(__) # -alias j="z" -alias fd="command -v fdfind" -alias dots="$DOTFILES/install" + +if [ -f ~/.aliases ]; then + source ~/.aliases +fi