X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Fenv;h=bd529ba1ce2f5ef25542d3d7a48f9e9394062add;hb=b989d9f7f42034ee72f5458d04df1e224e6a3d50;hp=ff5e6349bf6d5f8ec3a64edd0755b26771b758d9;hpb=4f7b2f8b413a236e0e310cfa8f4c7e05cca30ec8;p=config%2Fdotfiles.git diff --git a/shell/env b/shell/env index ff5e634..bd529ba 100644 --- a/shell/env +++ b/shell/env @@ -43,16 +43,16 @@ unset LC_TIME # variables like $LANG or $LC_ALL. unset LANGUAGE -# Add ~/bin and ~/.bin and ~/.shell/bin to PATH if available. +# Add ~/bin, ~/.bin and ~/.shell/bin to PATH if available. if test -d "$HOME/.shell/bin"; then PATH="$HOME/.shell/bin:$PATH" fi -if test -d "$HOME/bin"; then - PATH="$HOME/bin:$PATH" -fi if test -d "$HOME/.bin"; then PATH="$HOME/.bin:$PATH" fi +if test -d "$HOME/bin"; then + PATH="$HOME/bin:$PATH" +fi # Use Vim as editor. EDITOR=vim