diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -90,7 +90,8 @@ if ((EUID)) { export MAKEFLAGS=j$(grep -c '^processor' /proc/cpuinfo) # Add my own executables, if they're not already in the path -[[ $path[1] = $HOME/bin ]] || export PATH=$HOME/bin:$PATH +typeset -U path +path=(~/bin $path) # Add manuals from caretaker to manpath if [[ $distro == debian ]] { |