summary refs log tree commit diff
path: root/.vim/UltiSnips/markdown.snippets
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2021-11-02 17:30:24 +0100
committerRobert Günzler <r@gnzler.io>2021-11-02 19:06:47 +0100
commit15a7ac4890dea48be140350c295d4d9ea05292ee (patch)
treee0405ddaa98fa30ec336d2504a244e52b4910524 /.vim/UltiSnips/markdown.snippets
parent3768a6c1488c148cc07481687a47cb7cce02ad35 (diff)
vim: switch from ultisnips+snippets.nvim to snippy
Diffstat (limited to '.vim/UltiSnips/markdown.snippets')
-rw-r--r--.vim/UltiSnips/markdown.snippets43
1 files changed, 0 insertions, 43 deletions
diff --git a/.vim/UltiSnips/markdown.snippets b/.vim/UltiSnips/markdown.snippets
deleted file mode 100644
index 641e77c..0000000
--- a/.vim/UltiSnips/markdown.snippets
+++ /dev/null
@@ -1,43 +0,0 @@
-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