aboutsummaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile7
1 files changed, 5 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile
index 663e201..505d6d4 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -1,6 +1,9 @@
+# Add `~/bin` to the `$PATH`
+export PATH="$HOME/bin:$PATH"
+
# Load the shell dotfiles, and then some:
-# * ~/.path can be used to set or extend `$PATH`.
-# * ~/.extra can be used for settings you don’t want to commit.
+# * ~/.path can be used to extend `$PATH`.
+# * ~/.extra can be used for other settings you don’t want to commit.
for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do
[ -r "$file" ] && source "$file"
done