# 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