X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Fenv;h=d478b17d8b9c5c69844980e38a3549fda3bb2701;hb=648929874799d5c3db6ba5a7cfab874ca9b0306f;hp=15d8f4590aba5fa1fab570528f318d09ebde9f7e;hpb=29ffb598eede5a03ac959c4380b134245bd0b533;p=config%2Fdotfiles.git diff --git a/shell/env b/shell/env index 15d8f45..d478b17 100644 --- a/shell/env +++ b/shell/env @@ -10,15 +10,15 @@ LANG=en_US.UTF-8 export LANG # Add ~/bin and ~/.bin and ~/.shell/bin to PATH if available. +if [ -d ~/.shell/bin ]; then + PATH=~/.shell/bin:$PATH +fi if [ -d ~/bin ]; then PATH=~/bin:$PATH fi if [ -d ~/.bin ]; then PATH=~/.bin:$PATH fi -if [ -d ~/.shell/bin ]; then - PATH=~/.shell/bin:$PATH -fi # Use Vim as editor. EDITOR=vim