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 | 15d2470cc6d3acaa65635bb87790954a0ea03a2e (patch) | |
tree | f6fec10de2d646c5efa00288e6f967bd47b81a06 /home | |
parent | Set man_hard_wrap in nvim (diff) | |
download | src-15d2470cc6d3acaa65635bb87790954a0ea03a2e.tar.gz src-15d2470cc6d3acaa65635bb87790954a0ea03a2e.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.
Diffstat (limited to 'home')
-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 |