1
Fork 0

Add miros support!

This commit is contained in:
prescientmoon 2024-04-16 23:25:20 +02:00
parent 5652b531ba
commit 1ed3a529c9
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
26 changed files with 910 additions and 1153 deletions
home/features/neovim/snippets

View file

@ -0,0 +1,28 @@
block start
string msetup
name setup module
desc Create a lua module together with a .setup() function
snip
local M = {}
function M.setup()
$0
end
return M
string describe
name busted describe
desc Create a describe grouping for busted tests
snip
describe("$1", function ()
$0
end)
string it
name busted it
desc Create a busted test
snip
it("$1", function ()
$0
end)