1
Fork 0

Will rewrite my neovim config

This commit is contained in:
Matei Adriel 2022-12-26 20:07:10 +01:00
parent 657fecfa64
commit 686bdd12c4
23 changed files with 591 additions and 176 deletions
dotfiles/vscode-snippets/snippets/lua

View file

@ -11,5 +11,23 @@
"",
"return M"
]
},
"Busted describe": {
"prefix": "describe",
"description": "Create a describe call for a busted test",
"body": [
"describe(\"$1\", function ()",
"\t$0",
"end)"
]
},
"Busted it": {
"prefix": "it",
"description": "Create an it call for a busted test",
"body": [
"it(\"$1\", function ()",
"\t$0",
"end)"
]
}
}