24 lines
601 B
Bash
24 lines
601 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Source all bash configs files, except prompt and profile
|
|
# Adapted from https://github.com/mathiasbynens/dotfiles/blob/main/.bash_profile
|
|
#
|
|
# Source bash_functions twice to fix interdependency between bash_functions and
|
|
# bash_aliases
|
|
source ~/.bash_env
|
|
source ~/.bash_functions
|
|
source ~/.bash_aliases
|
|
source ~/.bash_functions
|
|
|
|
if [[ -n $VIMRUNTIME && -z $IS_VIFM_NEST ]]; then
|
|
# Prevent recursive sourcing
|
|
source ~/.bash_profile
|
|
fi
|
|
|
|
# shopt -s histappend
|
|
|
|
# Suppress prompt warning when switching users
|
|
if [[ -r ~/.git-prompt.bash ]]; then
|
|
source ~/.git-prompt.bash
|
|
fi
|