Created
September 13, 2015 15:36
-
-
Save cies/6bf116507a2a7bb974cc to your computer and use it in GitHub Desktop.
A comment in this thread refers here: https://www.reddit.com/r/haskell/comments/3kr6m3/update_i_got_spacemacs_working_using_stack_with/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
((haskell-mode | |
. ((haskell-indent-spaces . 2) | |
(hindent-style . "gibiansky") | |
(haskell-process-type . stack-ghci) | |
(haskell-process-path-ghci . "stack") | |
(haskell-process-args-ghci . ("ghci")) | |
(haskell-process-args-stack-ghci . ("--ghc-options=-ferror-spans" "--with-ghc=ghci-ng")))) | |
(haskell-cabal-mode | |
. ((haskell-process-type . stack-ghci) | |
(haskell-process-path-ghci . "stack") | |
(haskell-process-args-ghci . ("ghci")) | |
(haskell-process-args-stack-ghci . ("--ghc-options=-ferror-spans" "--with-ghc=ghci-ng"))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment