aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: 0a5b4fd8ec95c27b3e4fd115e9d815f69bd6b784 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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

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