;;; config--pkg-beancount.el --- Generated package (no.100) from my config -*- lexical-binding: t; -*- ;; ;; Copyright (C) 2025 TEC ;; ;; Author: TEC <https://code.tecosaur.net/tec> ;; Maintainer: TEC <contact@tecosaur.net> ;; Created: April 17, 2025 ;; Modified: April 17, 2025 ;; Version: 2025.04.17 ;; Homepage: https://code.tecosaur.net/tec/emacs-config ;; Package-Requires: ((emacs "29.1")) ;; ;; This file is not part of GNU Emacs. ;; ;;; Commentary: ;; ;; Generated package (no.100) from my config. ;; ;; During generation, dependency on other aspects of my configuration and ;; packages is inferred via (regexp-based) static analysis. While this seems ;; to do a good job, this method is imperfect. This code likely depends on ;; utilities provided by Doom, and if you try to run it in isolation you may ;; discover the code makes more assumptions. ;; ;; That said, I've found pretty good results so far. ;; ;; Package statement: ;; (package! beancount :recipe (:host github :repo "beancount/beancount-mode") ;; :pin "ddd4b8725703cf17a665b56cc26a3f9f95642424") ;; ;;; Code: (use-package! beancount :mode ("\\.beancount\\'" . beancount-mode) :init (after! nerd-icons (add-to-list 'nerd-icons-extension-icon-alist '("beancount" nerd-icons-faicon "nf-fa-dollar" :face nerd-icons-lblue)) (add-to-list 'nerd-icons-mode-icon-alist '(beancount-mode nerd-icons-faicon "nf-fa-dollar" :face nerd-icons-lblue))) :config (setq beancount-electric-currency t) (defun beancount-bal () "Run bean-report bal." (interactive) (let ((compilation-read-command nil)) (beancount--run "bean-report" (file-relative-name buffer-file-name) "bal"))) (map! :map beancount-mode-map :n "TAB" #'beancount-align-to-previous-number :i "RET" (cmd! (newline-and-indent) (beancount-align-to-previous-number)))) (provide 'config--pkg-beancount) ;;; config--pkg-beancount.el ends here