求助:有没有添加缺省源的插件

我希望atom能够向新建的文档添加一些指定的代码。应该怎么做?
目前只需要能够支持C/C++即可

使用用户启动脚本即可.

我的配置是这样的:

atom.workspace.observeTextEditors (editor) ->
  editor.insertText('#include<bits/stdc++.h>\n#define f(i,x,y) for(int i=x, i##end=y; i<=i##end; ++i)\n#define d(i,x,y) for(int i=y, i##end=x; i>=i##end; --i)\n#define ll long long\nchar ch;\nint rd() {\n  int f=1, x=0; ch=getchar();\n  while(!isdigit(ch)) { f=((ch==\'-\')?-1:f); ch=getchar(); }\n  while(isdigit(ch)) { x=x*10+ch-\'0\'; ch=getchar(); }\n  return x*f;\n}\nvoid rd(int& x) { x=rd(); }\nusing namespace std;\nint main() {\n  \n  return 0;\n}')
  editor.moveUp(2);
  editor.moveRight(2);