diff options
Diffstat (limited to 'bash_profile')
| -rw-r--r-- | bash_profile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bash_profile b/bash_profile index 53aad16..183cb74 100644 --- a/bash_profile +++ b/bash_profile @@ -2,10 +2,15 @@ # # BASH PROFILE # +# Load default profile if exists +[[ -f "$HOME/.profile" ]] && source "$HOME/.profile" # Load bashrc [[ -f "$HOME/.bashrc" ]] && source "$HOME/.bashrc" +# Ensure local directories exist +mkdir -p $HOME/.local/{lib,bin} $HOME/.cache + # Custom Scripts scripts="$HOME/repositories/scripts" [[ -d "$scripts" ]] && PATH="$PATH:$scripts" |
