mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Add module-haskell.el
This commit is contained in:
1
init.el
1
init.el
@ -69,6 +69,7 @@
|
||||
module-crystal ; ruby at the speed of c
|
||||
module-csharp ; unity, .NET, and mono shenanigans
|
||||
module-go ; the hipster dialect
|
||||
module-haskell ; a language that's lazier than me
|
||||
module-java ; the poster child for carpal tunnel syndome
|
||||
module-js ; all(hope(abandon(ye(who(enter(here))))))
|
||||
module-lisp ; drowning in parentheses
|
||||
|
10
modules/module-haskell.el
Normal file
10
modules/module-haskell.el
Normal file
@ -0,0 +1,10 @@
|
||||
;;; module-haskell.el
|
||||
|
||||
(use-package haskell-mode
|
||||
:mode "\\.hs$"
|
||||
:config
|
||||
;; haskell-mode complains that this function isn't defined, and it isn't!
|
||||
(defun haskell-mode-after-save-handler ()))
|
||||
|
||||
(provide 'module-haskell)
|
||||
;;; module-haskell.el ends here
|
Reference in New Issue
Block a user