diff --git a/.bashrc b/.bashrc index 36a580f..9fa9e9b 100644 --- a/.bashrc +++ b/.bashrc @@ -1,5 +1,9 @@ #!/usr/bin/env bash +for af in "$HOME/.aliases"/*; do + . "$af" +done + HISTSIZE=10000 HISTFILESIZE=900000 diff --git a/.profile b/.profile index 45b87c2..b10d788 100644 --- a/.profile +++ b/.profile @@ -1,7 +1,3 @@ -for af in "$HOME/.aliases"/*; do - . "$af" -done - [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" if [ -d "$HOME/.profile.d" ]; then diff --git a/.profile.mac b/.profile.mac index 43016e9..2d4d77b 100644 --- a/.profile.mac +++ b/.profile.mac @@ -20,10 +20,6 @@ eval $(ssh-agent) alias ls='ls -G' -for af in $HOME/.aliases/*; do - . "$af" -done - if [ -d "$HOME/.profile.d" ]; then for pd in "$HOME/.profile.d"/*; do . "$pd"