diff options
| author | Robert Günzler <r@gnzler.io> | 2021-11-02 17:30:24 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-11-02 19:06:47 +0100 |
| commit | 15a7ac4890dea48be140350c295d4d9ea05292ee (patch) | |
| tree | e0405ddaa98fa30ec336d2504a244e52b4910524 /.vim/after/snippets/markdown.snippets.todo | |
| parent | 3768a6c1488c148cc07481687a47cb7cce02ad35 (diff) | |
vim: switch from ultisnips+snippets.nvim to snippy
Diffstat (limited to '.vim/after/snippets/markdown.snippets.todo')
| -rw-r--r-- | .vim/after/snippets/markdown.snippets.todo | 43 |
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 |