diff options
author | June McEnroe <june@causal.agency> | 2019-02-20 12:27:24 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-02-20 12:27:24 -0500 |
commit | 8b89ba3cb021461106dc9165ee80dc8204dae394 (patch) | |
tree | 0e20f591fdf3deb126928fe5b6f27d61e54e99ff | |
parent | Set man_hard_wrap in nvim (diff) | |
download | src-8b89ba3cb021461106dc9165ee80dc8204dae394.tar.gz src-8b89ba3cb021461106dc9165ee80dc8204dae394.zip |
Move /opt/pkg after /usr in PATH
Installing mandoc from pkgsrc also installs a man executable which is horribly broken. Keep using the system man.
-rw-r--r-- | home/.kshrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.kshrc b/home/.kshrc index 7d2b6c0a..d1473a65 100644 --- a/home/.kshrc +++ b/home/.kshrc @@ -7,7 +7,7 @@ function colonize { print "$*" } systemPath=$PATH -PATH=$(colonize {,/opt/pkg,/usr{/local,/pkg,},$HOME/.local}/{s,}bin /usr/games) +PATH=$(colonize {,/usr{/local,/pkg,},/opt/pkg,$HOME/.local}/{s,}bin /usr/games) CDPATH=:$HOME export PWD |