Formatting

This commit is contained in:
Jeremy Dormitzer 2020-02-26 10:39:50 -05:00
parent 002660d715
commit e350f95653

View File

@ -8,30 +8,27 @@
alias ls='ls -G'
PS1='[\u@\h \W]\$ '
if [ -x "$(command -v direnv)" ];
then
if [ -x "$(command -v direnv)" ]; then
eval "$(direnv hook bash)"
fi
alias edit="$(which emacsclient) "
if [ -f /usr/share/nvm/init-nvm.sh ];
then
if [ -f /usr/share/nvm/init-nvm.sh ]; then
source /usr/share/nvm/init-nvm.sh
fi
if [ -d "$HOME/.nvm" ];
then
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
if [ -d "$HOME/.nvm" ]; then
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
if [ -e "$(which virtualenvwrapper.sh)" ]; then
source "$(which virtualenvwrapper.sh)"
fi
if [ -f ~/.bashrc.local ]; then
source ~/.bashrc.local
fi