1
Fork 0
satellite/dotfiles/vscode-snippets/snippets/lua/core.json

16 lines
257 B
JSON
Raw Normal View History

2022-10-14 13:44:47 +02:00
{
"Lua setup-module": {
"prefix": "msetup",
"description": "Create lua module with setup function inside",
"body": [
"local M = {}",
"",
"function M.setup()",
" $0",
"end",
"",
"return M"
]
}
}