- Documents lsp-haskell - Use hie-wrapper on MacOS - Update tools/lsp README to include :lang haskell - Mention cabal-new-repl setting (#1140)
10 lines
348 B
EmacsLisp
10 lines
348 B
EmacsLisp
;;; lang/haskell/+lsp.el -*- lexical-binding: t; -*-
|
|
|
|
(def-package! lsp-haskell
|
|
:after haskell-mode
|
|
:init (add-hook 'haskell-mode-hook #'lsp!)
|
|
:config
|
|
(when IS-MAC
|
|
(setq lsp-haskell-process-path-hie "hie-wrapper"))
|
|
;; Does some strange indentation if it pastes in the snippet
|
|
(setq-hook! 'haskell-mode-hook yas-indent-line 'fixed))
|