bashrc.local

* Make a '.bashrc.local' file in your home directory with user specific
aliases or shell variables
This commit is contained in:
ackman678
2019-02-11 15:17:07 -08:00
parent 2fd8d2d7d6
commit 4ea527e581
3 changed files with 10 additions and 5 deletions

View File

@@ -50,7 +50,11 @@ if [ -d "$HOME/bin/Fiji.app" ]; then
fi
#source custom user aliases
if [[ -e $HOME/.myconfig ]]; then
source $HOME/.myconfig
if [[ -e $HOME/.bashrc.local ]]; then
source $HOME/.bashrc.local
fi
# if [[ -z "$TMUX" ]] && [ "$SSH_CONNECTION" != "" ]; then
# tmux attach-session -t ssh_tmux || tmux new-session -s ssh_tmux
# fi