diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-11-04 00:54:00 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-11-04 00:54:00 +0100 |
| commit | 26d2f960341ef7e142541d80a058d8546e59e725 (patch) | |
| tree | cfc193645801dbf93c9aedb63faeb36f8b72341a /.bash_profile | |
| parent | 30a4b7e66095a5313a69a08c3d5fb9ef972ad31c (diff) | |
Fix including bashrc on linux when available and override it in profile
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 c44f3f2..d50e067 100644 --- a/.bash_profile +++ b/.bash_profile @@ -6,6 +6,11 @@ elif [ -d /usr/local/Homebrew ]; then eval "$(/usr/local/Homebrew/bin/brew shellenv)" fi +# ==== *nix include bashrc if found and override here +if [ -f "$HOME/.bashrc" ]; then + source "$HOME/.bashrc" +fi + export CLICOLOR=1 export LSCOLORS=gxfxcxdxbxegedabagacad # Mac OS custorm colors (not LS_COLORS as unix) defaultscheme "exfxcxdxbxegedabagacad" export LS_COLORS="$LS_COLORS:di=00;36:ln=00;35:ex=00;31" # Unix/Bash Readline custom colors |
