From 23de12baba9fbfc4ca24581b37c374aa5345cc25 Mon Sep 17 00:00:00 2001 From: Robert Günzler Date: Mon, 25 Nov 2024 13:30:37 +0100 Subject: update nvim config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robert Günzler --- .vim/snippets/markdown.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vim/snippets/markdown.lua (limited to '.vim/snippets/markdown.lua') diff --git a/.vim/snippets/markdown.lua b/.vim/snippets/markdown.lua new file mode 100644 index 0000000..221f301 --- /dev/null +++ b/.vim/snippets/markdown.lua @@ -0,0 +1,20 @@ +---@diagnostic disable: undefined-global +return { + s( + 'bugs', + fmt( + [[ +## bugs, help, patches? + +submit them to my [public-inbox](https://lists.sr.ht/~robertgzr/public-inbox) by sending an email to [~robertgzr/public-inbox@lists.sr.ht](mailto:~robertgzr/public-inbox@lists.sr.ht?Subject=%5B{proj}%5D%20) +]], + { proj = i(1, 'project name') } + ) + ), + + s('date', { + t(''), + i(1), + t(''), + }), +} -- cgit 1.4.1