doomemacs/modules/lang/haskell/+lsp.el

11 lines
348 B
EmacsLisp
Raw Normal View History

2019-02-23 03:20:45 +11:00
;;; lang/haskell/+lsp.el -*- lexical-binding: t; -*-
(def-package! lsp-haskell
:after haskell-mode
2019-03-02 01:33:54 -05:00
:init (add-hook 'haskell-mode-hook #'lsp!)
2019-02-23 03:20:45 +11:00
:config
(when IS-MAC
(setq lsp-haskell-process-path-hie "hie-wrapper"))
2019-02-23 03:20:45 +11:00
;; Does some strange indentation if it pastes in the snippet
(setq-hook! 'haskell-mode-hook yas-indent-line 'fixed))