emacs/lang/dhall.el
Maciej Szlosarczyk 9f73e90317
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run
Add missing requires to use-package macros
2024-07-22 07:43:42 +03:00

17 lines
493 B
EmacsLisp

;;; dhall -- summary -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
(use-package dhall-mode :straight t :defer t :requires (lsp))
(defun +custom-lang-dhall/activate-dhall-mode ()
"Reconfigure dhall mode for your own purposes."
(lsp))
(add-hook 'dhall-mode-hook '+custom-lang-dhall/activate-dhall-mode)
(add-hook 'dhall-mode-hook 'display-line-numbers-mode)
(provide '+custom-lang-dhall)
;;; dhall.el ends here