aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: c95bc9b03330179379b9cfd8bf44ca9a9492eb63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# If running Bash, source .bashrc.
if [ -n "$BASH_VERSION" ]; then
    if [ -e "$HOME/.bashrc" ]; then
        . "$HOME/.bashrc"
    fi
fi

# Add ~/bin to the path if it exists.
if [ -d "$HOME/bin" ]; then
    PATH="$HOME/bin:$PATH"
fi

# Add machine-specific local file if it exists.
if [ -e "$HOME/.bash_local" ]; then
    . "$HOME/.bash_local"
fi

# None of this UTF8 drawing characters nonsense.
export NCURSES_NO_UTF8_ACS=1