Begin moving away from org file
This commit is contained in:
parent
e038b8c08c
commit
5f5a3c04ea
13 changed files with 346 additions and 219 deletions
39
config/zed/keymap.json
Normal file
39
config/zed/keymap.json
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
// Zed keymap
|
||||
//
|
||||
// For information on binding keys, see the Zed
|
||||
// documentation: https://zed.dev/docs/key-bindings
|
||||
//
|
||||
// To see the default key bindings run `zed: open default keymap`
|
||||
// from the command palette.
|
||||
[
|
||||
{
|
||||
// global mode
|
||||
"bindings": {
|
||||
"ctrl-z": "workspace::ToggleZoom",
|
||||
"ctrl-s": "file_finder::Toggle",
|
||||
"ctrl-c": "pane::CloseActiveItem",
|
||||
"ctrl-h": "workspace::ActivatePaneLeft",
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown",
|
||||
"ctrl-t": "terminal_panel::ToggleFocus",
|
||||
"ctrl-shift-h": "workspace::ToggleLeftDock",
|
||||
"ctrl-shift-j": "workspace::ToggleBottomDock",
|
||||
"ctrl-shift-l": "workspace::ToggleRightDock",
|
||||
"ctrl-n": "pane::ActivateNextItem",
|
||||
"ctrl-p": "pane::ActivatePreviousItem"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Editor",
|
||||
"bindings": {
|
||||
// "j k": ["workspace::SendKeystrokes", "escape"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Terminal",
|
||||
"bindings": {
|
||||
"ctrl-c": null
|
||||
}
|
||||
}
|
||||
]
|
||||
86
config/zed/settings.json
Normal file
86
config/zed/settings.json
Normal file
|
|
@ -0,0 +1,86 @@
|
|||
// Zed settings
|
||||
//
|
||||
// For information on how to configure Zed, see the Zed
|
||||
// documentation: https://zed.dev/docs/configuring-zed
|
||||
//
|
||||
// To see all of Zed's default settings without changing your
|
||||
// custom settings, run `zed: open default settings` from the
|
||||
// command palette (cmd-shift-p / ctrl-shift-p)
|
||||
|
||||
{
|
||||
"lsp": {
|
||||
"beancount": {
|
||||
"initialization_options": {
|
||||
"journal_file": "ledger.beancount"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ssh_connections": [
|
||||
{
|
||||
"host": "dumpnet.chat",
|
||||
"username": "root",
|
||||
"projects": []
|
||||
}
|
||||
],
|
||||
"context_servers": {
|
||||
"mcp-server-context7": {
|
||||
"settings": {
|
||||
"default_minimum_tokens": "10000"
|
||||
}
|
||||
}
|
||||
},
|
||||
"agent": {
|
||||
"default_profile": "write",
|
||||
"always_allow_tool_actions": true,
|
||||
"dock": "bottom",
|
||||
"default_model": {
|
||||
"provider": "zed.dev",
|
||||
"model": "claude-opus-4"
|
||||
},
|
||||
},
|
||||
"features": {
|
||||
"copilot": true,
|
||||
"edit_prediction_provider": "copilot"
|
||||
},
|
||||
"terminal": {
|
||||
"dock": "right",
|
||||
"shell": { "program": "fish" },
|
||||
"font_family": "FiraCode Nerd Font Mono",
|
||||
"line_height": {
|
||||
"custom": 1.52
|
||||
},
|
||||
"font_features": {
|
||||
"liga": true
|
||||
},
|
||||
"detect_venv": {
|
||||
"on": {
|
||||
"directories": [".env", "env", ".venv", "venv"],
|
||||
"activate_script": "default"
|
||||
}
|
||||
}
|
||||
},
|
||||
"telemetry": {
|
||||
"metrics": false,
|
||||
"diagnostics": false
|
||||
},
|
||||
"languages": {
|
||||
"YAML": {
|
||||
"format_on_save": "off"
|
||||
},
|
||||
"Python": {
|
||||
"format_on_save": "off",
|
||||
"formatter": null,
|
||||
"remove_trailing_whitespace_on_save": false,
|
||||
"ensure_final_newline_on_save": false
|
||||
}
|
||||
},
|
||||
"vim_mode": true,
|
||||
"ui_font_family": "FiraCode Nerd Font Mono",
|
||||
"ui_font_size": 16,
|
||||
"buffer_font_size": 15.0,
|
||||
"theme": {
|
||||
"mode": "system",
|
||||
"light": "One Dark",
|
||||
"dark": "Base16 Materia"
|
||||
}
|
||||
}
|
||||
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