doomemacs/modules/lang/dhall/config.el
Rudi Grinberg dd55ebb67a
module: add :lang dhall
Close #4791

Signed-off-by: Rudi Grinberg <me@rgrinberg.com>
2021-08-03 01:51:31 -04:00

12 lines
357 B
EmacsLisp

;;; lang/dhall/config.el -*- lexical-binding: t; -*-
(use-package! dhall-mode
:defer t
:config
(set-repl-handler! 'dhall-mode #'dhall-repl-show)
(setq dhall-format-at-save (featurep! :editor format +onsave))
(map! :map dhall-mode-map
:localleader
"l" #'dhall-lint
"f" #'dhall-freeze
"t" #'dhall-buffer-type-show))