aboutsummaryrefslogtreecommitdiff
path: root/doom.d/snippets
diff options
context:
space:
mode:
Diffstat (limited to 'doom.d/snippets')
-rw-r--r--doom.d/snippets/csharp-mode/class ... { ... }9
-rw-r--r--doom.d/snippets/csharp-mode/foreach9
-rw-r--r--doom.d/snippets/csharp-mode/method8
-rw-r--r--doom.d/snippets/csharp-mode/params6
-rw-r--r--doom.d/snippets/csharp-mode/returns5
-rw-r--r--doom.d/snippets/org-mode/author5
-rw-r--r--doom.d/snippets/org-mode/date5
-rw-r--r--doom.d/snippets/org-mode/description5
-rw-r--r--doom.d/snippets/org-mode/img10
-rw-r--r--doom.d/snippets/org-mode/include5
-rw-r--r--doom.d/snippets/org-mode/title5
11 files changed, 72 insertions, 0 deletions
diff --git a/doom.d/snippets/csharp-mode/class ... { ... } b/doom.d/snippets/csharp-mode/class ... { ... }
new file mode 100644
index 0000000..5e96938
--- /dev/null
+++ b/doom.d/snippets/csharp-mode/class ... { ... }
@@ -0,0 +1,9 @@
+# -*- mode: snippet -*-
+# name: class ... { ... }
+# key: class
+# --
+
+${1:public} class ${2:Name}
+{
+ $0
+}
diff --git a/doom.d/snippets/csharp-mode/foreach b/doom.d/snippets/csharp-mode/foreach
new file mode 100644
index 0000000..220fcd9
--- /dev/null
+++ b/doom.d/snippets/csharp-mode/foreach
@@ -0,0 +1,9 @@
+# -*- mode: snippet -*-
+# name: Foreach loop
+# key: foreach
+# condition: t
+# --
+foreach (${1:var} ${2:i} in ${3:collection})
+{
+ $0
+}
diff --git a/doom.d/snippets/csharp-mode/method b/doom.d/snippets/csharp-mode/method
new file mode 100644
index 0000000..a2aaf6b
--- /dev/null
+++ b/doom.d/snippets/csharp-mode/method
@@ -0,0 +1,8 @@
+# -*- mode: snippet -*-
+# name: public void Method { ... }
+# key: method
+# --
+${1:public} ${2:void} ${3:Method}(${4:int x})
+{
+ ${0:return x;}
+}
diff --git a/doom.d/snippets/csharp-mode/params b/doom.d/snippets/csharp-mode/params
new file mode 100644
index 0000000..b781710
--- /dev/null
+++ b/doom.d/snippets/csharp-mode/params
@@ -0,0 +1,6 @@
+# -*- mode: snippet -*-
+# name: /// <param>...</param>
+# key: comment
+# --
+
+/// <param name="$1">$0</param> \ No newline at end of file
diff --git a/doom.d/snippets/csharp-mode/returns b/doom.d/snippets/csharp-mode/returns
new file mode 100644
index 0000000..dee5e8d
--- /dev/null
+++ b/doom.d/snippets/csharp-mode/returns
@@ -0,0 +1,5 @@
+# -*- mode: snippet -*-
+# name: /// <returns>...</returns>
+# key: comment
+# --
+/// <returns>$0</returns> \ No newline at end of file
diff --git a/doom.d/snippets/org-mode/author b/doom.d/snippets/org-mode/author
new file mode 100644
index 0000000..3da977e
--- /dev/null
+++ b/doom.d/snippets/org-mode/author
@@ -0,0 +1,5 @@
+# -*- mode: snippet -*-
+# name: author
+# key: <au
+# --
+#+AUTHOR: $1 \ No newline at end of file
diff --git a/doom.d/snippets/org-mode/date b/doom.d/snippets/org-mode/date
new file mode 100644
index 0000000..37fa30d
--- /dev/null
+++ b/doom.d/snippets/org-mode/date
@@ -0,0 +1,5 @@
+# -*- mode: snippet -*-
+# name: date
+# key: <da
+# --
+#+DATE: ${1:Year}:${2:month}:${3:day} \ No newline at end of file
diff --git a/doom.d/snippets/org-mode/description b/doom.d/snippets/org-mode/description
new file mode 100644
index 0000000..c880c80
--- /dev/null
+++ b/doom.d/snippets/org-mode/description
@@ -0,0 +1,5 @@
+# -*- mode: snippet -*-
+# name: description
+# key: desc
+# --
+#+DESCRIPTION: ${1:description of your org-mode file} \ No newline at end of file
diff --git a/doom.d/snippets/org-mode/img b/doom.d/snippets/org-mode/img
new file mode 100644
index 0000000..9da54ba
--- /dev/null
+++ b/doom.d/snippets/org-mode/img
@@ -0,0 +1,10 @@
+# -*- mode: snippet -*-
+# name: img
+# key: img_
+# --
+<img src="$1"
+ alt="$2" align="${3:left}"
+ title="${4:image title}"
+ class="img"
+</img>
+$0 \ No newline at end of file
diff --git a/doom.d/snippets/org-mode/include b/doom.d/snippets/org-mode/include
new file mode 100644
index 0000000..4938877
--- /dev/null
+++ b/doom.d/snippets/org-mode/include
@@ -0,0 +1,5 @@
+# -*- mode: snippet -*-
+# name: include
+# key: <i
+# --
+#+INCLUDE: $1 \ No newline at end of file
diff --git a/doom.d/snippets/org-mode/title b/doom.d/snippets/org-mode/title
new file mode 100644
index 0000000..30d763a
--- /dev/null
+++ b/doom.d/snippets/org-mode/title
@@ -0,0 +1,5 @@
+# -*- mode: snippet -*-
+# name: Title
+# key: <ti
+# --
+#+TITLE: ${1:What the hell}