dotfiles/bash/rc

17 lines
351 B
Bash

## bashrc, called for interactive shells
source $DOTFILES_BASH_DIR/prompt
source $DOTFILES_BASH_DIR/history
# easy on spelling mistakes
shopt -s cdspell
# turn off distractive bells
set bell-style none
# homebrew bash autocompletion
if [ -f `brew --prefix`/etc/bash_completion ]; then
source `brew --prefix`/etc/bash_completion
fi
# vim: ft=sh