root.toml 470 B

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