diff options
Diffstat (limited to '.emacs.d/jd/jd-org.el')
-rwxr-xr-x | .emacs.d/jd/jd-org.el | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/.emacs.d/jd/jd-org.el b/.emacs.d/jd/jd-org.el index fe273c3..f511846 100755 --- a/.emacs.d/jd/jd-org.el +++ b/.emacs.d/jd/jd-org.el | |||
@@ -168,22 +168,43 @@ | |||
168 | (setq org-roam-capture-templates | 168 | (setq org-roam-capture-templates |
169 | '(("a" "workstuff" plain (file (concat org-roam-directory "/work")) | 169 | '(("a" "workstuff" plain (file (concat org-roam-directory "/work")) |
170 | :target (file+head "work/%<%Y%m%d%H%M%S>-${slug}.org" | 170 | :target (file+head "work/%<%Y%m%d%H%M%S>-${slug}.org" |
171 | "#+title: ${title}\n") :unnarrowed t) | 171 | "#+title: ${title}\n") |
172 | :unnarrowed t) | ||
172 | ("b" "research" plain (file "~/Documents/roam/study/templates/research.org") | 173 | ("b" "research" plain (file "~/Documents/roam/study/templates/research.org") |
173 | :target (file+head "study/%<%Y%m%d%H%M%S>-${slug}.org" | 174 | :target (file+head "study/%<%Y%m%d%H%M%S>-${slug}.org" |
174 | "#+title: ${title}\n") :unnarrowed t) | 175 | "#+title: ${title}\n") |
175 | ("s" "School" plain nil | 176 | :unnarrowed t) |
177 | ("s" "School") | ||
178 | ("ss" "School General" plain nil | ||
176 | :target (file+head | 179 | :target (file+head |
177 | "school/%<%Y%m%d%H%M%S>-${slug}.org" | 180 | "school/%<%Y%m%d%H%M%S>-${slug}.org" |
178 | "#+title: ${title}\n") | 181 | "#+title: ${title}\n") |
179 | :unnarrowed t) | 182 | :unnarrowed t) |
183 | ("sp" "Polish Lesson" plain nil | ||
184 | :target (file+head | ||
185 | "school/polish/%<%Y%m%d%H%M%S>-${slug}.org" | ||
186 | "#+title: ${title}\n") | ||
187 | :unnarrowed t) | ||
188 | ("sw" "Wos Lesson" plain nil | ||
189 | :target (file+head | ||
190 | "school/wos/%<%Y%m%d%H%M%S>-${slug}.org" | ||
191 | "#+title: ${title}\n") | ||
192 | :unnarrowed t) | ||
193 | ("g" "Guitar" plain nil | ||
194 | :target (file+head | ||
195 | "guitar/%<%Y%m%d%H%M%S>-${slug}.org" | ||
196 | "#+title: ${title}\n") | ||
197 | :unnarrowed t) | ||
180 | ("d" "default" plain nil | 198 | ("d" "default" plain nil |
181 | :target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" | 199 | :target (file+head "%<%Y%m%d%H%M%S>-${slug}.org" |
182 | "#+title: ${title}\n") :unnarrowed t) | 200 | "#+title: ${title}\n") |
201 | :unnarrowed t) | ||
183 | )) | 202 | )) |
184 | 203 | ||
185 | (org-roam-db-autosync-mode)) | 204 | (org-roam-db-autosync-mode)) |
186 | 205 | ||
206 | (jd/use-package ox-pandoc "emacs-ox-pandoc") | ||
207 | |||
187 | (provide 'jd-org) | 208 | (provide 'jd-org) |
188 | 209 | ||
189 | ;;; jd-org.el ends here | 210 | ;;; jd-org.el ends here |