Add .bashrc.local support

This commit is contained in:
Jeremy Dormitzer 2019-06-06 14:46:16 -04:00
parent 0c26353090
commit db4e83a1cf

View File

@ -27,7 +27,7 @@ then
eval "$(direnv hook bash)"
fi
alias edit="$(which emacsclient)"
alias edit="$(which emacsclient) "
if [ -d "$HOME/.nvm" ];
then
@ -35,3 +35,8 @@ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
fi
if [ -f ~/.bashrc.local ];
then
source ~/.bashrc.local
fi