summaryrefslogtreecommitdiff
path: root/.bash_profile
blob: b8ea799f3f62eec3b6ba787661cb14ba3eae7d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
#
# getchoo's bash_profile
#

source "${HOME}/.config/shell/profile"

# add user's bin directory to path
if [ -d "${HOME}/.local/bin" ]
then
	export PATH="${HOME}/.local/bin:${PATH}"
fi

source "${HOME}/.bashrc"