mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
19 lines
437 B
Bash
19 lines
437 B
Bash
## bashrc, called for interactive shells
|
|
|
|
[[ -z "$DOTFILES_ROOT_DIR" ]] && source "$HOME/.dotfilesrc"
|
|
|
|
source $DOTFILES_BASH_DIR/prompt
|
|
source $DOTFILES_BASH_DIR/history
|
|
source $DOTFILES_BASH_DIR/term_title
|
|
source $DOTFILES_BASH_DIR/completion
|
|
|
|
# Make bash check its window size after a process completes
|
|
shopt -s checkwinsize
|
|
|
|
# easy on spelling mistakes
|
|
shopt -s cdspell
|
|
|
|
# turn off distractive bells
|
|
set bell-style none
|
|
|
|
# vim: ft=sh
|