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
|
|
|
|
;; Does some strange indentation if it pastes in the snippet
|
2019-02-25 22:26:13 -05:00
|
|
|
(setq-hook! 'haskell-mode-hook yas-indent-line 'fixed))
|