X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Fenv;h=a9163179c41d755a8a013d3d606f5794f0e26001;hb=e111c254973cbfc4e2cb3d6a059bf52f6f8cf571;hp=038de39b0721c7ee7dfb2a5a5dea468df1802f77;hpb=ef21c744d20a11bae968699ed76d66f44b4290c9;p=config%2Fdotfiles.git diff --git a/shell/env b/shell/env index 038de39..a916317 100644 --- a/shell/env +++ b/shell/env @@ -20,10 +20,13 @@ source_debug "sourcing ~/.shell/env" LANG=en_US.UTF-8 export LANG -# Add ~/bin to PATH if available. +# Add ~/bin and ~/.bin to PATH if available. if [ -d ~/bin ]; then PATH=~/bin:$PATH fi +if [ -d ~/.bin ]; then + PATH=~/.bin:$PATH +fi # Use Vim as editor. EDITOR=vim