emacs/lisp/langs/icejam-lang-dhall.el
Maciej Szlosarczyk c7b0c1c6c2
Use elpaca instead of straight
Some big changes related to that, and to use-package
2024-10-23 09:08:11 +03:00

18 lines
471 B
EmacsLisp

;;; dhall -- summary -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require 'icejam-prog-mode)
(require 'icejam-lsp)
(use-package dhall-mode :ensure t :defer t :requires (lsp))
(defun icejam-lang-activate-dhall-mode ()
"Reconfigure dhall mode for your own purposes."
(lsp))
(add-hook 'dhall-mode-hook 'icejam-lang-activate-dhall-mode)
(add-hook 'dhall-mode-hook 'display-line-numbers-mode)
(provide 'icejam-lang-dhall)
;;; icejam-lang-dhall.el ends here