blob: e8ab16e585b7bc5b1014c977a64c098ee7fc08d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
;;; haskell.el --- My Haskell preferences -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;;; Commentary:
;; Hosts my Haskell development preferences
;;; Code:
;; Haskell support
;; font-locking, glyph support, etc
(use-package haskell-mode
:config
(let ((m-symbols
'(("`mappend`" . "⊕")
("<>" . "⊕"))))
(dolist (item m-symbols) (add-to-list 'haskell-font-lock-symbols-alist item)))
(setq haskell-font-lock-symbols t)
(add-hook-before-save 'haskell-mode #'haskell-align-imports))
;; LSP support
(use-package lsp-haskell
:after (haskell-mode)
:config
(setq lsp-haskell-process-path-hie "hie-wrapper")
(add-hook 'haskell-mode-hook #'lsp-haskell-enable)
(add-hook 'haskell-mode-hook #'flycheck-mode))
;; Test toggling
(defun haskell/module->test ()
"Jump from a module to a test."
(let ((filename (->> buffer-file-name
(s-replace "/src/" "/test/")
(s-replace ".hs" "Test.hs")
find-file)))
(make-directory (f-dirname filename) t)
(find-file filename)))
(defun haskell/test->module ()
"Jump from a test to a module."
(let ((filename (->> buffer-file-name
(s-replace "/test/" "/src/")
(s-replace "Test.hs" ".hs")
)))
(make-directory (f-dirname filename) t)
(find-file filename)))
(defun haskell/test<->module ()
"Toggle between test and module in Haskell."
(interactive)
(if (s-contains? "/src/" buffer-file-name)
(haskell/module->test)
(haskell/test->module)))
(provide 'wpc-haskell)
;;; wpc-haskell.el ends here
|