From e83b9e5cfa76a37329b2472f9d07eded10b8265f Mon Sep 17 00:00:00 2001 From: Squibid Date: Mon, 12 Jan 2026 17:14:26 -0500 Subject: [PATCH] add markdown snippets --- lua/snippets/markdown.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lua/snippets/markdown.lua diff --git a/lua/snippets/markdown.lua b/lua/snippets/markdown.lua new file mode 100644 index 0000000..77edb4a --- /dev/null +++ b/lua/snippets/markdown.lua @@ -0,0 +1,11 @@ +dofile(core.snippets) + +return { + s("[]", { + t("["), + i(1), + t("]("), + i(2), + t(")"), + }), +}