aboutsummaryrefslogtreecommitdiff
path: root/shoshimacs.el
diff options
context:
space:
mode:
authorGrant Shoshin Shangreaux <shoshin@cicadas.surf>2023-03-01 21:16:29 -0600
committerGrant Shoshin Shangreaux <shoshin@cicadas.surf>2023-03-01 21:16:29 -0600
commit7111b92461f06dfaab4d8f33787f73b1b9313c06 (patch)
treedbc826fcc73d087142412cd56055a381a8ba0147 /shoshimacs.el
parentb703719204e712d39ce61ce4d88cb8fb21c1a58c (diff)
Add: org-capture-templates and Fix: telephone-line config
Diffstat (limited to 'shoshimacs.el')
-rw-r--r--shoshimacs.el15
1 files changed, 13 insertions, 2 deletions
diff --git a/shoshimacs.el b/shoshimacs.el
index 8d22251..bee6420 100644
--- a/shoshimacs.el
+++ b/shoshimacs.el
@@ -153,6 +153,18 @@
(package-install 'markdown-mode)
+(setq org-default-notes-file (concat org-directory "/notes.org"))
+
+(setq org-capture-templates
+ `(("p" "Protocol" entry (file+headline ,org-default-notes-file "Inbox")
+ "* %^{Title}\nSource: %u, %c\n #+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n\n%?")
+ ("L" "Protocol Link" entry (file+headline ,org-default-notes-file "Inbox")
+ "* %? [[%:link][%:description]] \nCaptured On: %U")))
+
+(setq org-refile-use-outline-path t
+ org-refile-allow-creating-parent-nodes t
+ org-refile-targets '((nil . (:maxlevel . 2))))
+
(defun my-org-top-level-heading ()
(interactive)
(let ((moo 1))
@@ -376,11 +388,10 @@
(accent . (telephone-line-major-mode-segment))
(evil . (telephone-line-airline-position-segment))))
+(telephone-line-mode t)
(set-face-background 'telephone-line-evil-normal "deep pink")
(set-face-background 'telephone-line-evil-insert "Dark Turquoise")
-(telephone-line-mode t)
-
(defun screenshot-svg ()
"Save a screenshot of the current frame as an SVG image.
Saves to a temp file and puts the filename in the kill ring."