dotfiles/.config/nvim/snippets/lua.json

12 lines
257 B
JSON

{
"table": {
"description": "Pretty Lua table.",
"prefix": "tbl",
"body": ["{", "\t$0", "},"]
},
"table_key_pair": {
"description": "Pretty table key pair.",
"prefix": "kp",
"body": ["${1:key} = {", "\t${2:value}", "},"]
}
}