|
@ -1933,7 +1933,23 @@ echo "shell running!" |
|
|
deactivate |
|
|
deactivate |
|
|
#+END_SRC |
|
|
#+END_SRC |
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp |
|
|
|
|
|
(use-package beancount |
|
|
|
|
|
:if *sys/linux* |
|
|
|
|
|
:load-path "user-global/elisp/" |
|
|
|
|
|
; :ensure t |
|
|
|
|
|
:defer t |
|
|
|
|
|
:mode |
|
|
|
|
|
("\\.beancount$" . beancount-mode) |
|
|
|
|
|
:hook |
|
|
|
|
|
(beancount-mode . my/beancount-company) |
|
|
|
|
|
:config |
|
|
|
|
|
(defun my/beancount-company () |
|
|
|
|
|
(setq-local completion-at-point-functions #'beancount-completion-at-point)) |
|
|
|
|
|
(setq beancount-filename-main "/home/marc/Archiv/Finanzen/Transaktionen/transactions.beancount")) |
|
|
|
|
|
|
|
|
|
|
|
#+end_src |
|
|
|
|
|
+BEGIN_SRC emacs-lisp |
|
|
(use-package beancount |
|
|
(use-package beancount |
|
|
:if *sys/linux* |
|
|
:if *sys/linux* |
|
|
:load-path "user-global/elisp" |
|
|
:load-path "user-global/elisp" |
|
|