bashrc 313 B

1234567891011121314
  1. source ~/dotfiles/shell/env
  2. # Only load interactive settings when in interactive shells.
  3. [[ $- != *i* ]] && return
  4. source ~/dotfiles/shell/common/load
  5. for file in ~/dotfiles/shell/bash/*.bash; do
  6. source $file
  7. done
  8. [[ -r ~/.bashrc.local ]] && source ~/.bashrc.local
  9. [ -f ~/.fzf.bash ] && source ~/.fzf.bash