c1e381eecc
TL;DR: - prefer WPCARRO env-var to BRIEFCASE - remove repository URLs from Emacs libraries - prefer tvl-depot-path where possible - reduce the scope of constants.el - prune (some not all) stale CI configuration Change-Id: I21e9130402502ec6fa2fc4b46753c890069be62d Reviewed-on: https://cl.tvl.fyi/c/depot/+/4545 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com>
61 lines
1.8 KiB
EmacsLisp
61 lines
1.8 KiB
EmacsLisp
;;; wpc-haskell.el --- My Haskell preferences -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
;; Version: 0.0.1
|
|
;; Package-Requires: ((emacs "24"))
|
|
|
|
;;; Commentary:
|
|
;; Hosts my Haskell development preferences
|
|
|
|
;;; Code:
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Dependencies
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(require 'macros)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Configuration
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; font-locking, glyph support, etc
|
|
(use-package haskell-mode
|
|
:config
|
|
(macros-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 wpc-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 wpc-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 wpc-haskell-test<->module ()
|
|
"Toggle between test and module in Haskell."
|
|
(interactive)
|
|
(if (s-contains? "/src/" buffer-file-name)
|
|
(wpc-haskell-module->test)
|
|
(wpc-haskell-test->module)))
|
|
|
|
(provide 'wpc-haskell)
|
|
;;; wpc-haskell.el ends here
|