diff options
Diffstat (limited to '.zsh')
-rw-r--r-- | .zsh/zshenv/80_haskell | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.zsh/zshenv/80_haskell b/.zsh/zshenv/80_haskell new file mode 100644 index 0000000..e39dd4b --- /dev/null +++ b/.zsh/zshenv/80_haskell @@ -0,0 +1,13 @@ +# zshenv/80_haskell +# +# Set variables related to the Haskell programming language +# +# Copyright © 2024 Tobias Klauser <tklauser@distanz.ch> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + +path_append $HOME/.cabal/bin +path_append $HOME/.ghcup/bin + +# vim:ft=zsh |