Move dante mode map

This commit is contained in:
Patrick Elliott
2018-07-19 11:03:16 +02:00
parent dc68d7aad8
commit 406e8f31f6
2 changed files with 9 additions and 10 deletions

View File

@ -18,4 +18,12 @@
:hook (haskell-mode . dante-mode)
:config
(when (featurep! :feature syntax-checker)
(flycheck-add-next-checker 'haskell-dante '(warning . haskell-hlint))))
(flycheck-add-next-checker 'haskell-dante '(warning . haskell-hlint)))
(map! :map dante-mode-map
:localleader
:n "t" #'dante-type-at
:n "i" #'dante-info
:n "l" #'haskell-process-load-or-reload
:n "e" #'dante-eval-block
:n "a" #'attrap-attrap))