From bc2fa4b3f2fcfa269b2d96ccba5fba543f841ca7 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 13 Sep 2016 02:50:59 -0700 Subject: [PATCH] Add haskell_setup --- dotfiles/lib/shellpath.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dotfiles/lib/shellpath.sh b/dotfiles/lib/shellpath.sh index dbe0b04e..943e9452 100644 --- a/dotfiles/lib/shellpath.sh +++ b/dotfiles/lib/shellpath.sh @@ -13,6 +13,7 @@ function _setup_env { is_osx && _osx_path_setup _emacs_setup + _haskell_setup _java_setup _go_setup _rust_setup @@ -117,3 +118,6 @@ function _path_helper { fi } +function _haskell_setup { + add_to_path "$HOME/.cabal/bin" +}