diff options
author | William Carroll <wpcarro@gmail.com> | 2020-09-02T13·49+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-09-02T13·49+0100 |
commit | 924c7fa4199235a929ecd6a68a09b7e4acd36352 (patch) | |
tree | cf18d000d70f2f3c1eb97d30a5d1f65686d0ca05 /emacs/.emacs.d/wpc/wpc-haskell.el | |
parent | 71e57700d60a2573fca069dfa8fc90e928561dcf (diff) |
Debug undefined add-hook-before-save
`use-package` complains that `add-hook-before-save` doesn't exist. This is because it's now named `macros-add-hook-before-save`. This fixes that.
Diffstat (limited to 'emacs/.emacs.d/wpc/wpc-haskell.el')
-rw-r--r-- | emacs/.emacs.d/wpc/wpc-haskell.el | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-haskell.el b/emacs/.emacs.d/wpc/wpc-haskell.el index 00c22ca7364a..f9ed8552e0be 100644 --- a/emacs/.emacs.d/wpc/wpc-haskell.el +++ b/emacs/.emacs.d/wpc/wpc-haskell.el @@ -10,10 +10,20 @@ ;;; Code: +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Dependencies +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(require 'macros) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Configuration +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + ;; font-locking, glyph support, etc (use-package haskell-mode :config - (add-hook-before-save 'haskell-mode #'haskell-align-imports)) + (macros-add-hook-before-save 'haskell-mode #'haskell-align-imports)) ;; LSP support (use-package lsp-haskell |