summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-01-03 15:38:30 -0600
committerCase Duckworth2022-01-03 15:38:30 -0600
commit4e250314920ef640e897efada581cf5083a71ebe (patch)
treee929a5c605e0cfe679ea38d1b52297bab3e99e57
parentChange bind for helpful-at-point (diff)
downloademacs-4e250314920ef640e897efada581cf5083a71ebe.tar.gz
emacs-4e250314920ef640e897efada581cf5083a71ebe.zip
Fix typos
-rw-r--r--init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.el b/init.el index 83ab2cf..7cc4e43 100644 --- a/init.el +++ b/init.el
@@ -455,13 +455,13 @@
455 (:+leader "c" #'org-capture "C-c" #'org-capture) 455 (:+leader "c" #'org-capture "C-c" #'org-capture)
456 (+org-capture-templates-setf "t" "Todo") 456 (+org-capture-templates-setf "t" "Todo")
457 (+org-capture-templates-setf "tt" 457 (+org-capture-templates-setf "tt"
458 '("Today!" entry (file "todo.org") 458 `("Today!" entry (file "todo.org")
459 (concat "* TODO %^{Title}\n" 459 ,(concat "* TODO %^{Title}\n"
460 "DEADLINE: %t\n" 460 "DEADLINE: %t\n"
461 "\n%?"))) 461 "\n%?")))
462 (+org-capture-templates-setf "ts" 462 (+org-capture-templates-setf "ts"
463 '("Someday..." entry (file "todo.org") 463 `("Someday..." entry (file "todo.org")
464 (concat "* TODO %^{Title}\n" 464 ,(concat "* TODO %^{Title}\n"
465 ":PROPERTIES:\n" 465 ":PROPERTIES:\n"
466 ":CREATED: [%<%F %T>]\n" 466 ":CREATED: [%<%F %T>]\n"
467 ":END:\n" 467 ":END:\n"