From: Simon Ruderich Date: Fri, 12 Nov 2010 20:38:21 +0000 (+0100) Subject: shell/env: Add ~/.shell/bin to PATH. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=29ffb598eede5a03ac959c4380b134245bd0b533 shell/env: Add ~/.shell/bin to PATH. --- diff --git a/shell/env b/shell/env index a71dfc7..15d8f45 100644 --- a/shell/env +++ b/shell/env @@ -9,13 +9,16 @@ source_debug ". ~/.shell/env" LANG=en_US.UTF-8 export LANG -# Add ~/bin and ~/.bin to PATH if available. +# Add ~/bin and ~/.bin and ~/.shell/bin to PATH if available. 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