diff options
Diffstat (limited to 'doom.d/snippets/org-mode')
-rw-r--r-- | doom.d/snippets/org-mode/author | 5 | ||||
-rw-r--r-- | doom.d/snippets/org-mode/date | 5 | ||||
-rw-r--r-- | doom.d/snippets/org-mode/description | 5 | ||||
-rw-r--r-- | doom.d/snippets/org-mode/img | 10 | ||||
-rw-r--r-- | doom.d/snippets/org-mode/include | 5 | ||||
-rw-r--r-- | doom.d/snippets/org-mode/title | 5 |
6 files changed, 35 insertions, 0 deletions
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} |