Fix #5035: assocate *.beancount with beancount-mode

Otherwise, use-package implicitly associates *.beancount with
a function called `beancount`, which does not exist.
This commit is contained in:
Henrik Lissner 2021-05-11 16:20:20 -04:00
parent a1ab5e8066
commit febe4a7403

View file

@ -1,7 +1,7 @@
;;; lang/beancount/config.el -*- lexical-binding: t; -*-
(use-package! beancount
:mode "\\.beancount\\'"
:mode ("\\.beancount\\'" . beancount-mode)
:init
(add-hook 'beancount-mode-hook #'outline-minor-mode)