mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
9 lines
258 B
EmacsLisp
9 lines
258 B
EmacsLisp
;;; lang/haskell/+lsp.el -*- lexical-binding: t; -*-
|
|
|
|
(def-package! lsp-haskell
|
|
:after haskell-mode
|
|
:init (add-hook 'haskell-mode-hook #'+lsp|init)
|
|
:config
|
|
;; Does some strange indentation if it pastes in the snippet
|
|
(setq yas-indent-line 'fixed))
|