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

15 lines
216 B
JSON
Raw Normal View History

{
"Hello World": {
"prefix": "hello",
"body": [
"#include <iostream>",
"",
"int main () {",
"\t$1",
"\treturn 0;",
"}"
],
"description": "starter template"
}
}