Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ;; haskell
  2. (use-package haskell-mode
  3. :ensure t
  4. :init
  5. (progn
  6. (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
  7. (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
  8. (add-hook 'haskell-mode-hook 'interactive-haskell-mode)
  9. (setq haskell-process-args-cabal-new-repl
  10. '("--ghc-options=-ferror-spans -fshow-loaded-modules"))
  11. (setq haskell-process-type 'cabal-new-repl)
  12. (setq haskell-stylish-on-save 't)
  13. (setq haskell-tags-on-save 't)
  14. ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement