| 1234567891011121314151617181920212223 |
- source ~/dotfiles/shell/env
- # Only load interactive settings when in interactive shells.
- [[ $- != *i* ]] && return
- source ~/dotfiles/shell/common/load
- for file in ~/dotfiles/shell/bash/*.bash; do
- source $file
- done
- # Command Prompt
- #
- # [host] directory gitinfo jobinfo
- # user -
- #
- PROMPT_COMMAND='PS1="
- ${FG[6]}[\h] ${FG[3]}$(shortcwd)$(__gitp " %s")$(getajob)
- ${FG[5]}\u - $cReset"'
- [[ -r ~/.bashrc.local ]] && source ~/.bashrc.local
- [ -f ~/.fzf.bash ] && source ~/.fzf.bash
|