mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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:
@ -1,7 +1,7 @@
|
|||||||
;;; lang/beancount/config.el -*- lexical-binding: t; -*-
|
;;; lang/beancount/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(use-package! beancount
|
(use-package! beancount
|
||||||
:mode "\\.beancount\\'"
|
:mode ("\\.beancount\\'" . beancount-mode)
|
||||||
:init
|
:init
|
||||||
(add-hook 'beancount-mode-hook #'outline-minor-mode)
|
(add-hook 'beancount-mode-hook #'outline-minor-mode)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user