aboutsummaryrefslogtreecommitdiffstats
path: root/config/doom/config.org
diff options
context:
space:
mode:
Diffstat (limited to 'config/doom/config.org')
-rw-r--r--config/doom/config.org9
1 files changed, 4 insertions, 5 deletions
diff --git a/config/doom/config.org b/config/doom/config.org
index 92bc0f9..be7f74c 100644
--- a/config/doom/config.org
+++ b/config/doom/config.org
@@ -279,10 +279,9 @@ Emacs mode for managing ledger text files
#+end_src
* Programming languages
** Haskell
-#+begin_src emacs-lisp :tangle "packages.el"
-(package! hindent)
-#+end_src
#+begin_src emacs-lisp
-(use-package! hindent
- :hook (haskell-mode . hindent-mode))
+(after! haskell-mode
+ (setq-hook! 'haskell-mode-hook +format-with :none)
+ (setq haskell-stylish-on-save t
+ lsp-haskell-formatting-provider "stylish-haskell"))
#+end_src