[zsh] Add .cabal/bin to PATH if available

Add locally installed Haskell binaries to the path
This commit is contained in:
Correl Roush 2014-01-09 21:37:25 -05:00
parent 070f63a117
commit d0af2d8172

4
.zshrc
View file

@ -42,3 +42,7 @@ if [ ! -d ${HOME}/.cask ]; then
curl -fsSkL https://raw.github.com/cask/cask.el/master/go | python
fi
export PATH="${HOME}/.cask/bin:$PATH"
if [ -d ${HOME}/.cabal/bin ]; then
export PATH="${HOME}/.cabal/bin:$PATH"
fi