Move bash for stow

main
Buddy Sandidge 4 years ago
parent 03e8fe0b28
commit 427cc260c6

@ -14,13 +14,15 @@ if [[ ! "${BASH_VERSION}" = "3.2*" ]]; then
shopt -s autocd shopt -s autocd
fi fi
CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/bash"
source-file /etc/bash_completion source-file /etc/bash_completion
source-file ~/.bash/environment source-file "${CONFIG}/environment.sh"
source-file ~/.bash/aliases source-file "${CONFIG}/aliases.sh"
source-file ~/.bash/functions source-file "${CONFIG}/functions.sh"
source-file ~/.bash/path source-file "${CONFIG}/path.sh"
source-file ~/.bash/prompt source-file "${CONFIG}/prompt.sh"
source-file ~/.bash/completion source-file "${CONFIG}/completion.sh"
source-file ~/opt/bash/env source-file ~/opt/bash/env
unset -f source-file unset -f source-file
Loading…
Cancel
Save