2018-04-29 23:13:10 +02:00
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(custom-set-variables
|
|
|
|
'(ledger-reports
|
|
|
|
(quote
|
2018-05-04 23:36:09 +02:00
|
|
|
(("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")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2018-05-04 23:36:09 +02:00
|
|
|
)
|
2018-04-29 23:13:10 +02:00
|
|
|
#+END_SRC
|