dotfiles/bash/rc

15 lines
294 B
Bash

## bashrc, called for interactive shells
source $DOTFILES_BASH_DIR/prompt
source $DOTFILES_BASH_DIR/history
source $DOTFILES_BASH_DIR/term_title
source $DOTFILES_BASH_DIR/completion
# easy on spelling mistakes
shopt -s cdspell
# turn off distractive bells
set bell-style none
# vim: ft=sh