root.toml 512 B

123456789101112131415161718192021222324252627
  1. ledger_path = "./ledger"
  2. [units]
  3. CAD = { name = "Canadian Dollar", precision = 2 }
  4. USD = { name = "United States Dollar", precision = 2 }
  5. [accounts.initial]
  6. [accounts.unbalanced]
  7. [accounts.chequing]
  8. title = "Chequing"
  9. description = ""
  10. annotations = { abc = "def" }
  11. unit = "CAD"
  12. [accounts.savings]
  13. unit = "CAD"
  14. import = { format = "csv", skip_start = 1, cols = ["datestamp", "title", "change", "balance"], date_format = "%d %b %Y" }
  15. [accounts.savings_usd]
  16. unit = "USD"
  17. [accounts.loan]
  18. [accounts."a.b/c"]