1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00
2021-06-18 00:23:18 +08:00

22 lines
260 B
Plaintext

snippet bare "barebone code template"
#include <iostream>
#include <vector>
#include <string>
using std::cout;
using std::endl;
using std::vector;
using std::string;
int main()
{
}
endsnippet
snippet icd "#include directive" b
#include <$1>
$0
endsnippet