diff options
-rw-r--r-- | emacs/.emacs.d/main.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 3e454195..226cc2fb 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1788,6 +1788,18 @@ With prefix TO-CURRENT-BUFFER, insert command output into buffer." ("account" "ledger -f %(ledger-file) reg %(account)"))))) ;; #+END_SRC +;; *** Beancount + +;; #+BEGIN_SRC emacs-lisp +(let ((beancount-dir (car (split-string (shell-command-to-string "ghq list --full-path beancount"))))) + (when (file-directory-p beancount-dir) + (add-to-list 'load-path (expand-file-name "editors/emacs/" + beancount-dir)) + (use-package beancount + :defines (beancount-use-ido) + :config (setq beancount-use-ido nil)))) +;; #+END_SRC + ;; *** Markdown ;; #+BEGIN_SRC emacs-lisp |