summary refs log tree commit diff
path: root/.vim/after/snippets/markdown.snippets.todo
diff options
context:
space:
mode:
Diffstat (limited to '.vim/after/snippets/markdown.snippets.todo')
-rw-r--r--.vim/after/snippets/markdown.snippets.todo43
1 files changed, 43 insertions, 0 deletions
diff --git a/.vim/after/snippets/markdown.snippets.todo b/.vim/after/snippets/markdown.snippets.todo
new file mode 100644
index 0000000..641e77c
--- /dev/null
+++ b/.vim/after/snippets/markdown.snippets.todo
@@ -0,0 +1,43 @@
+snippet new "new page" b
+---
+date: "`now`"
+title: "$0"
+---
+endsnippet
+
+snippet link "Link"
+[$1](${2:${VISUAL}})
+endsnippet
+
+snippet code "Code block" b
+\`\`\`$1
+${2:${VISUAL}}
+\`\`\`
+$0
+endsnippet
+
+snippet detail "Detail block" b
+<details>
+<summary>$1<summary>
+
+${2:${VISUAL}}
+
+</details>
+$0
+endsnippet
+
+snippet todo "todo: generic"
+* [ ] $0
+endsnippet
+
+snippet todoKV "todo: krankenversicherung"
+* [ ] $0
+				- [ ] überweisung
+				- [ ] beleg einreichen
+				- [ ] filings
+				- [ ] refund
+endsnippet
+
+snippet furigana
+$\stackrel{\text{$2}}{\text{$1}}$$0
+endsnippet