aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: f46d8af55050016a56115e31676dcbef00c8eafe (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 [ -f "$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

# Environment variables.
export LANG=en_NZ.UTF-8
export NCURSES_NO_UTF8_ACS=1