feat(nvim): added snippets

This commit is contained in:
Juliano Barbosa 2023-08-31 14:26:33 -03:00
parent c01a93caee
commit 2926dfe869
No known key found for this signature in database
GPG Key ID: EB8B440F57360B3D
1 changed files with 12 additions and 0 deletions

12
snippets/snippet.lua Normal file
View File

@ -0,0 +1,12 @@
local link = s({
trig = "link",
name = "Link",
dscr = "Web link"
}, {
t({ "`" }),
i(1, "Title"),
t(" <"),
i(2, "link"),
t(">`_"),
i(0)
})