diff options
author | katherine <shmibs@shmibbles.me> | 2016-01-23 13:10:12 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-01-23 13:10:12 -0700 |
commit | 19298f6efcea91c13672df70abf976618e548d88 (patch) | |
tree | 45ebd0cc97875881e7179e5bd5e75b860a3f2af3 | |
parent | 8254675dff09cbcf45555136f775a893fe6846a2 (diff) | |
download | dotfiles-19298f6efcea91c13672df70abf976618e548d88.tar.gz |
PATH for cabal
-rw-r--r-- | .zshrc | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -20,6 +20,17 @@ bindkey -e setopt notify unsetopt beep +##################### MISC #################### + +# path for haskell builds +if [[ -d ~/.cabal/bin ]]; then + PATH=$PATH:~/.cabal/bin +fi + +if [[ -d ~/.cabal-sandbox/bin ]]; then + PATH=$PATH:~/.cabal-sandbox/bin +fi + #################### PROMPT ################### PROMPT="%{%B$fg[white]%}┌[" # if non-zero, previous return val |