aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: 99aad4ff283018032d43eac5bf2b28ec48aec286 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# Source .bashrc if it exists.
[[ -e "$HOME/.bashrc" ]] && source "$HOME/.bashrc"

# Add various paths if they exit.
[[ -d "${HOME}/bin" ]] && PATH="${HOME}/bin:${PATH}"
[[ -d "/usr/local/mysql/bin" ]] && PATH="/usr/local/mysql/bin:${PATH}"
[[ -d "/usr/local/pgsql/bin" ]] && PATH="/usr/local/pgsql/bin:${PATH}"

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