dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit dc2d3faa4e1983208412a40fa6c00bef1de5cdcd
parent cea26a09e5d7df01faa390b17f154b3de709fad0
Author: Anders Damsgaard <andersd@riseup.net>
Date:   Wed, 15 Nov 2017 18:50:42 -0500

fix typo which excluded ~/bin from path when shell was launched outside HOME

Diffstat:
Mlinks/.zshrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/links/.zshrc b/links/.zshrc @@ -216,7 +216,7 @@ alias egrep='egrep --color=auto' [ -d /usr/local/bin ] && export PATH=/usr/local/bin:$PATH [ -d /usr/local/sbin ] && export PATH=/usr/local/sbin:$PATH [ -d $HOME/local/bin ] && export PATH=$HOME/local/bin:$PATH -[ -d $HOME/bin ] && export PATH=$PATH/bin:$PATH +[ -d $HOME/bin ] && export PATH=$HOME/bin:$PATH if [ -d $HOME/.linuxbrew ]; then export PATH=$HOME/.linuxbrew/bin:$PATH export MANPATH=$HOME/.linuxbrew/share/man:$MANPATH