diff options
author | Yigit Sever | 2023-08-18 23:42:39 +0300 |
---|---|---|
committer | Yigit Sever | 2023-08-18 23:42:39 +0300 |
commit | 387e08c52d9752bc839c71119f140ba8435c3d70 (patch) | |
tree | 3bb20c0e58ccf1e65ced4cfdfb6459e226a24672 /.config/nvim/my_snippets/ledger.snippets | |
parent | 14c14cfcc9aeb4bada6d2429162ded2917f26a94 (diff) | |
download | dotfiles-387e08c52d9752bc839c71119f140ba8435c3d70.tar.gz dotfiles-387e08c52d9752bc839c71119f140ba8435c3d70.tar.bz2 dotfiles-387e08c52d9752bc839c71119f140ba8435c3d70.zip |
nvim: switch to lazy.nvim
revert this as whole, if you miss the good old days
Diffstat (limited to '.config/nvim/my_snippets/ledger.snippets')
-rw-r--r-- | .config/nvim/my_snippets/ledger.snippets | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/.config/nvim/my_snippets/ledger.snippets b/.config/nvim/my_snippets/ledger.snippets deleted file mode 100644 index 098a767..0000000 --- a/.config/nvim/my_snippets/ledger.snippets +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | # vim:ft=snippets: | ||
2 | # vim:set noexpandtab tabstop=4 shiftwidth=4: | ||
3 | |||
4 | snippet c "New Checking Transaction" b | ||
5 | ${1:`!v strftime("%Y")`}-${2:`!v strftime("%m")`}-${3:`!v strftime("%d")`} ${4:Payee} | ||
6 | Expenses:${5:} ${6:0.00} TL | ||
7 | Assets:Maas$0 | ||
8 | endsnippet | ||
9 | |||
10 | snippet l "New Liabilities Transaction" b | ||
11 | ${1:`!v strftime("%Y")`}-${2:`!v strftime("%m")`}-${3:`!v strftime("%d")`} ${4:Payee} | ||
12 | Expenses:${5:} ${6:0.00} TL | ||
13 | Liabilities:Maximum$0 | ||
14 | endsnippet | ||
15 | |||
16 | snippet a "New Asmaalti Transaction" b | ||
17 | ${1:`!v strftime("%Y")`}-${2:`!v strftime("%m")`}-${3:`!v strftime("%d")`} Asmaalti Piknik | ||
18 | Expenses:Food:Eating Out ${4:0.00} TL | ||
19 | ${5:Assets:Maas}$0 | ||
20 | endsnippet | ||
21 | |||
22 | snippet y "New Yemeksepeti Transaction" b | ||
23 | ${1:`!v strftime("%Y")`}-${2:`!v strftime("%m")`}-${3:`!v strftime("%d")`} Yemeksepeti | ||
24 | Expenses:Takeout ${4:0.00} TL | ||
25 | ${5:Liabilities:Maximum}$0 | ||
26 | endsnippet | ||
27 | |||
28 | snippet m "New Migros Transaction" b | ||
29 | ${1:`!v strftime("%Y")`}-${2:`!v strftime("%m")`}-${3:`!v strftime("%d")`} Migros Market | ||
30 | Expenses:Food:Groceries ${4:0.00} TL | ||
31 | ${5:Assets:Maas}$0 | ||
32 | endsnippet | ||
33 | |||
34 | snippet sb "New Sosyal Bina Transaction" b | ||
35 | ${1:`!v strftime("%Y")`}-${2:`!v strftime("%m")`}-${3:`!v strftime("%d")`} Sosyal Bina | ||
36 | Expenses:Food:Lunch 8.60 TL | ||
37 | Assets:Maas$0 | ||
38 | endsnippet | ||
39 | |||