Add haskell_setup

This commit is contained in:
Ivan Malison 2016-09-13 02:50:59 -07:00
parent c5c30e984d
commit bc2fa4b3f2
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -13,6 +13,7 @@ function _setup_env {
is_osx && _osx_path_setup is_osx && _osx_path_setup
_emacs_setup _emacs_setup
_haskell_setup
_java_setup _java_setup
_go_setup _go_setup
_rust_setup _rust_setup
@ -117,3 +118,6 @@ function _path_helper {
fi fi
} }
function _haskell_setup {
add_to_path "$HOME/.cabal/bin"
}