dotfiles/bash/.bashrc
Akemi Izuko f6881cea7a
Init again
The dotfiles are back
2022-09-06 23:34:19 -06:00

19 lines
491 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
# shopt -s histappend
# Suppress prompt warning when switching users
if [[ -r ~/.git-prompt.bash ]]; then
source ~/.git-prompt.bash
fi