Namespace most of my custom functions
Some checks failed
/ Test config on ${{matrix.node}} (20) (push) Has been cancelled

This commit is contained in:
Maciej 2024-07-28 14:31:54 +03:00
parent dd5387cd7e
commit c2caa56b35
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
25 changed files with 82 additions and 85 deletions

View file

@ -21,9 +21,9 @@
:defer t
:requires (lsp-mode lsp-ui haskell-mode))
(defun activate-haskell-mode ()
(defun icejam/activate-haskell-mode ()
"Run this in haskell-mode."
(set-indent 2)
(icejam/set-indent 2)
(column-enforce-n 80)
(lsp-deferred)
@ -31,7 +31,7 @@
(add-to-list (make-local-variable 'company-backends)
'(company-capf company-yasnippet)))
(add-hook 'haskell-mode-hook 'activate-haskell-mode)
(add-hook 'haskell-mode-hook 'icejam/activate-haskell-mode)
(provide 'icejam-lang-haskell)
;;; icejam-lang-haskell.el ends here