[Emacs] Haskell configuration cleanup

This commit is contained in:
Ivan Malison 2018-05-29 21:01:32 -07:00
parent 7b1cb528b4
commit 15f490380b
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 5 additions and 4 deletions

View File

@ -71,6 +71,7 @@
imalison:multiple-cursors-hydra/mc/mark-next-like-this
imalison:multiple-cursors-hydra/nil
isearch-delete-char
make-frame
smex
yank-rectangle
))

View File

@ -2744,12 +2744,12 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877
haskell-process-auto-import-loaded-modules t
;; Disable haskell-stylish-on-save, as it breaks flycheck highlighting.
;; NOTE: May not be true anymore - taksuyu 2015-10-06
haskell-stylish-on-save nil)
(setq haskell-indent-offset 2)
haskell-stylish-on-save nil
haskell-tags-on-save nil
haskell-indent-offset 2)
(require 'flycheck)
(delq 'haskell-stack-ghc flycheck-checkers)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
(setq haskell-tags-on-save t)))
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)))
#+END_SRC
**** haskell-ide-engine
#+BEGIN_SRC emacs-lisp