aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: ceea58072c347d57eead97967c06998c8878ddfb (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 locale file if it exists.
if [ -e "$HOME/.bash_locale" ]; then
    . "$HOME/.bash_locale"
fi

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