mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
22 lines
260 B
Plaintext
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
|