mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
factored hindent out as a seperate feature.
This commit is contained in:
6
modules/lang/haskell/+hindent.el
Normal file
6
modules/lang/haskell/+hindent.el
Normal file
@ -0,0 +1,6 @@
|
||||
;;; +hindent.el --- description -*- lexical-binding: t; -*-
|
||||
;;;###if (featurep! +hindent)
|
||||
|
||||
(def-package! hindent
|
||||
:hook (haskell-mode . hindent-mode))
|
||||
|
@ -3,6 +3,8 @@
|
||||
(cond ((featurep! +intero) (load! "+intero"))
|
||||
((featurep! +dante) (load! "+dante")))
|
||||
|
||||
(when (featurep! +hindent) (load! "+hindent"))
|
||||
|
||||
|
||||
;;
|
||||
;; Common plugins
|
||||
|
@ -6,7 +6,8 @@
|
||||
;;
|
||||
(cond ((featurep! +dante)
|
||||
(package! dante))
|
||||
(t
|
||||
(package! intero)
|
||||
(package! hindent)))
|
||||
(t (package! intero)))
|
||||
|
||||
(when (featurep! +hindent)
|
||||
(package! hindent))
|
||||
|
||||
|
Reference in New Issue
Block a user