summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.vim/UltiSnips/php.snippets11
1 files changed, 11 insertions, 0 deletions
diff --git a/.vim/UltiSnips/php.snippets b/.vim/UltiSnips/php.snippets
new file mode 100644
index 0000000..903b1ed
--- /dev/null
+++ b/.vim/UltiSnips/php.snippets
@@ -0,0 +1,11 @@
+snippet copy "Copyright notice" b
+<?php
+/*
+ * Copyright `date +%Y` Florian "Bluewind" Pritz <bluewind@server-speed.net>
+ *
+ * Licensed under AGPLv3
+ * (see COPYING for full license text)
+ *
+ */
+
+endsnippet