diff options
author | Aaron LI <aly@aaronly.me> | 2019-06-08 13:46:10 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2019-06-08 13:46:10 +0800 |
commit | b2823eef17afaac9a4625c614df7c29d61bff21d (patch) | |
tree | 95655bd81ef95b4881cfaf02d6d1fac4257ec632 /_profile | |
parent | df3df1e7fe622a2a99812759f51ea36397075b31 (diff) | |
download | dotfiles-b2823eef17afaac9a4625c614df7c29d61bff21d.tar.bz2 |
profile: Add ~/local/plan9/bin to PATH
Diffstat (limited to '_profile')
-rw-r--r-- | _profile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -69,6 +69,11 @@ if [ -d "${HOME}/.local/bin" ]; then _path_prepend "${HOME}/.local/bin" fi _path_prepend "${HOME}/bin" +## Plan 9 from User Space +if [ -d "${HOME}/local/plan9" ]; then + export PLAN9="${HOME}/local/plan9" + _path_append ${PLAN9}/bin +fi _path_append "/usr/local/sbin" _path_append "/usr/sbin" _path_append "/sbin" |