mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-10-14 15:49:09 +00:00
Add haskell module
This module provides support for per user haskell packages by prepending the per user directories to PATH/MANPATH.
This commit is contained in:
committed by
Sorin Ionescu
parent
84a6c19c2b
commit
235cef787e
16
modules/haskell/init.zsh
Normal file
16
modules/haskell/init.zsh
Normal file
@@ -0,0 +1,16 @@
|
||||
#
|
||||
# Enables local Haskell package installation.
|
||||
#
|
||||
# Authors:
|
||||
# Sebastian Wiesner <lunaryorn@googlemail.com>
|
||||
#
|
||||
|
||||
# Prepend Cabal per user directories to PATH/MANPATH.
|
||||
if [[ "$OSTYPE" == darwin* ]]; then
|
||||
path=($HOME/Library/Haskell/bin(/N) $path)
|
||||
manpath=($HOME/Library/Haskell/man(/N) $manpath)
|
||||
else
|
||||
path=($HOME/.cabal/bin(/N) $path)
|
||||
manpath=($HOME/.cabal/man(/N) $path)
|
||||
fi
|
||||
|
Reference in New Issue
Block a user