Add module-haskell.el
This commit is contained in:
parent
8028c63a6b
commit
9f83c84a32
2 changed files with 11 additions and 0 deletions
1
init.el
1
init.el
|
@ -69,6 +69,7 @@
|
||||||
module-crystal ; ruby at the speed of c
|
module-crystal ; ruby at the speed of c
|
||||||
module-csharp ; unity, .NET, and mono shenanigans
|
module-csharp ; unity, .NET, and mono shenanigans
|
||||||
module-go ; the hipster dialect
|
module-go ; the hipster dialect
|
||||||
|
module-haskell ; a language that's lazier than me
|
||||||
module-java ; the poster child for carpal tunnel syndome
|
module-java ; the poster child for carpal tunnel syndome
|
||||||
module-js ; all(hope(abandon(ye(who(enter(here))))))
|
module-js ; all(hope(abandon(ye(who(enter(here))))))
|
||||||
module-lisp ; drowning in parentheses
|
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
|
Loading…
Add table
Add a link
Reference in a new issue