Begin moving away from org file
This commit is contained in:
parent
e038b8c08c
commit
5f5a3c04ea
13 changed files with 346 additions and 219 deletions
104
config/zed/snippets/beancount.json
Normal file
104
config/zed/snippets/beancount.json
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
{
|
||||
".beancount": {
|
||||
"expense": {
|
||||
"prefix": "exp",
|
||||
"body": "Expenses:${1:Category}:${2:Subcategory}",
|
||||
"description": "Expense account"
|
||||
},
|
||||
"food": {
|
||||
"prefix": "efood",
|
||||
"body": "Expenses:Food:${1|EatingOut,Groceries,FastFood,Alcohol|}",
|
||||
"description": "Food expense"
|
||||
},
|
||||
"income": {
|
||||
"prefix": "inc",
|
||||
"body": "Income:${1:Source}:${2:Type}",
|
||||
"description": "Income account"
|
||||
},
|
||||
"assets": {
|
||||
"prefix": "ast",
|
||||
"body": "Assets:${1|Truist,DCCU,NFCU|}:${2|Checking,Savings,CC|}",
|
||||
"description": "Asset account"
|
||||
},
|
||||
"transaction": {
|
||||
"prefix": "txn",
|
||||
"body": [
|
||||
"${1:2024-01-01} * \"${2:Description}\"",
|
||||
" ${3:Assets:Truist:Checking} ${4:-10.00} USD",
|
||||
" ${5:Expenses:}${0}"
|
||||
],
|
||||
"description": "Transaction template"
|
||||
},
|
||||
"balance": {
|
||||
"prefix": "bal",
|
||||
"body": "${1:2024-01-01} balance ${2:Assets:Truist:Checking} ${3:0.00} USD",
|
||||
"description": "Balance assertion"
|
||||
},
|
||||
"pad": {
|
||||
"prefix": "pad",
|
||||
"body": "${1:2024-01-01} pad ${2:Assets:Truist:Savings} Equity:OpeningBalances",
|
||||
"description": "Pad statement"
|
||||
},
|
||||
"bills": {
|
||||
"prefix": "ebills",
|
||||
"body": "Expenses:Bills:${1|Mortgage,Gas,Utilities,Internet,Insurance|}",
|
||||
"description": "Bills expense"
|
||||
},
|
||||
"online": {
|
||||
"prefix": "eonline",
|
||||
"body": "Expenses:Online:${1|Subscriptions,Amazon|}",
|
||||
"description": "Online expense"
|
||||
},
|
||||
"healthcare": {
|
||||
"prefix": "ehealth",
|
||||
"body": "Expenses:Healthcare:${1|Diabetes,Dexter,PT|}",
|
||||
"description": "Healthcare expense"
|
||||
},
|
||||
"hobbies": {
|
||||
"prefix": "ehobby",
|
||||
"body": "Expenses:Hobbies:${1|Homegym,Photography,Luthiery,Woodworking|}",
|
||||
"description": "Hobby expense"
|
||||
},
|
||||
"vehicle": {
|
||||
"prefix": "evehicle",
|
||||
"body": "Expenses:Vehicle:${1|Gas,Maintenance|}",
|
||||
"description": "Vehicle expense"
|
||||
},
|
||||
"transfer": {
|
||||
"prefix": "xfer",
|
||||
"body": [
|
||||
"${1:2024-01-01} * \"${2:Transfer}\"",
|
||||
" ${3:Assets:Truist:Savings} ${4:-500.00} USD",
|
||||
" ${5:Assets:Truist:Checking} ${4:500.00} USD"
|
||||
],
|
||||
"description": "Transfer between accounts"
|
||||
},
|
||||
"paycheck": {
|
||||
"prefix": "pay",
|
||||
"body": [
|
||||
"${1:2024-01-01} * \"${2:DIR DEP Foresight Techno 2853 Ian D. Keane ACH CREDIT}\"",
|
||||
" Assets:${3|Truist:Savings,Truist:Checking|} ${4:2000.00} USD",
|
||||
" Income:Foresight:Payroll"
|
||||
],
|
||||
"description": "Paycheck deposit"
|
||||
},
|
||||
"rent": {
|
||||
"prefix": "rent",
|
||||
"body": [
|
||||
"${1:2024-01-01} * \"${2:Kristi Elrod PAYMENT ID}\"",
|
||||
" Assets:Truist:${3|Checking,Savings|} ${4:600.00} USD",
|
||||
" Income:Rent"
|
||||
],
|
||||
"description": "Rent income"
|
||||
},
|
||||
"mortgage": {
|
||||
"prefix": "mort",
|
||||
"body": [
|
||||
"${1:2024-01-01} * \"ONLINE TO ****9049 - ONLINE MORTGAGE LOAN PMT\"",
|
||||
" Assets:Truist:Savings -${2:1712.05} USD",
|
||||
" Expenses:Bills:Mortgage"
|
||||
],
|
||||
"description": "Mortgage payment"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue