Merge develop

This commit is contained in:
Patrick Elliott
2018-07-18 08:36:29 +02:00
6 changed files with 55 additions and 40 deletions

View File

@ -1,6 +1,9 @@
;;; lang/haskell/+dante.el -*- lexical-binding: t; -*-
;;;###if (featurep! +dante)
(def-package! attrap
:commands (attrap-attrap))
(def-package! dante
:init
(setq dante-load-flags '(;; defaults:
@ -12,7 +15,7 @@
;; necessary to make company completion useful:
"-fdefer-typed-holes"
"-fdefer-type-errors"))
:hook (haskell-mode . dante-mode))
(def-package! attrap
:commands (attrap-attrap))
:hook (haskell-mode . dante-mode)
:config
(when (featurep! :feature syntax-checker)
(flycheck-add-next-checker 'haskell-dante '(warning . haskell-hlint))))