diff options
Diffstat (limited to '.bash_profile')
| -rw-r--r-- | .bash_profile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.bash_profile b/.bash_profile index d89387a..e72eec5 100644 --- a/.bash_profile +++ b/.bash_profile @@ -3,9 +3,6 @@ # Set up the home environment profile. if [ -f ~/.profile ]; then source ~/.profile; fi -# Honor per-interactive-shell startup file -if [ -f ~/.bashrc ]; then source ~/.bashrc; fi - export SUDO="sudo" export TERMINAL="st" export BROWSER="firefox" @@ -29,3 +26,6 @@ export MBSYNCRC="$XDG_CONFIG_HOME/mbsync/config" export MANPATH="$MANPATH:$XDG_DATA_HOME/man" export _JAVA_AWT_WM_NONREPARENTING="1" export PATH="$CARGO_HOME/bin:$HOME/.local/bin:$HOME/scripts:$PATH" + +# Honor per-interactive-shell startup file +if [ -f ~/.bashrc ]; then source ~/.bashrc; fi |
