diff options
author | Ben Sima <ben@bsima.me> | 2020-04-20 21:27:02 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-20 21:27:02 -0700 |
commit | c0a31f4a3ffcfdf78efb457a8686b6258fe3ad2f (patch) | |
tree | 14a58d86f00f883500ccb780abe73f5c43c77019 | |
parent | a77270f11a7b49bbd290f48095ae32f62ad96648 (diff) |
Include investment accounts in hledger-fire
-rwxr-xr-x | hledger-fire.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hledger-fire.hs b/hledger-fire.hs index 600c8b0..b07f012 100755 --- a/hledger-fire.hs +++ b/hledger-fire.hs @@ -45,7 +45,7 @@ getTotal j d q = head $ map aquantity $ total -- cash-spending accounts. savingsAccounts :: [String] savingsAccounts = - [ "as:me:save" ] --, "as:me:vest" ] + [ "as:me:save", "as:me:vest" ] -- | Savings rate is a FIRE staple. Basically take your savings and divide it by -- your income on a monthly basis. |