about summary refs log blame commit diff
path: root/emacs/.emacs.d/wpc/wpc-haskell.el
blob: f045624645848b2a4f6c03169a8f0b93684f9d4f (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                    
 
                                   
                         
         
                                                               
 






                                                    
 
                
                              







                                                   
                              







                                                   
                               


                                              

                            
 
                      
                            
;;; 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
  (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