mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 11:30:23 +10:00
12 lines
399 B
EmacsLisp
12 lines
399 B
EmacsLisp
;;; lang/haskell/+lsp.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! lsp-haskell
|
|
:after lsp-mode
|
|
:preface (add-hook 'haskell-mode-local-vars-hook #'lsp!)
|
|
:config
|
|
(when (featurep! +ghcide)
|
|
(setq lsp-haskell-server-path "ghcide"
|
|
lsp-haskell-server-args nil))
|
|
;; Does some strange indentation if it pastes in the snippet
|
|
(setq-hook! 'haskell-mode-hook yas-indent-line 'fixed))
|