dotfiles/emacs/.emacs.d/ledger.org

18 lines
637 B
Org Mode
Raw Normal View History

#+BEGIN_SRC emacs-lisp
(custom-set-variables
'(ledger-reports
(quote
(("schulden" "%(binary) -f %(ledger-file) bal ^Schulden")
("acclist" "%(binary) -f %(ledger-file) accounts")
2018-10-03 18:39:19 +02:00
("spendable" "%(binary) -f %(ledger-file) reg Girokonto$ Brieftasche$ --real")
("monthly" "%(binary) -f %(ledger-file) -M --period-sort \"amount\" reg ^Ausgaben --real")
("bal" "%(binary) -f %(ledger-file) bal --real")
("reg" "%(binary) -f %(ledger-file) reg --real")
("payee" "%(binary) -f %(ledger-file) reg @%(payee) --real")
("acc" "%(binary) -f %(ledger-file) reg %(account) --real")
)
)
)
)
#+END_SRC