add these two common bins

Fri, 10 Aug 2018 15:41:36 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 10 Aug 2018 15:41:36 -0500
changeset 712
1fa3948ce85e
parent 711
ffdc56854d48
child 713
650ca91e3197

add these two common bins

.bashrc file | annotate | diff | comparison | revisions
.zshenv file | annotate | diff | comparison | revisions
--- a/.bashrc
+++ b/.bashrc
@@ -7,7 +7,9 @@ fi
 
 source ~/.lib/bash/path.sh
 
-path-prepend "$HOME/bin"
+for DIR in bin .cargo/bin .local/bin; do
+  path-prepend "$HOME/$DIR"
+done
 
 if path-prepend "$HOME/.plenv/bin"; then
   eval "$(plenv init -)"
--- a/.zshenv
+++ b/.zshenv
@@ -1,2 +1,2 @@
 typeset -U path manpath
-path[1,0]="$HOME/bin"
+path[1,0]=(~/bin ~/.cargo/bin ~/.local/bin)

mercurial