summaryrefslogtreecommitdiff
path: root/lisp/org-custom.el
diff options
context:
space:
mode:
authorMatthew Kosarek <mattkae@protonmail.com>2023-07-11 07:38:04 -0400
committerMatthew Kosarek <mattkae@protonmail.com>2023-07-11 07:38:04 -0400
commitce205fd5dcc23c734bcf463cf91664978370d300 (patch)
treebcb7e95b2140225aaaadf1eb8ed42a95eb865662 /lisp/org-custom.el
parent048815eab6feab07cbcf3ba6d6ffcf73fd19f5b9 (diff)
Some minor updates to org mode
Diffstat (limited to 'lisp/org-custom.el')
-rw-r--r--lisp/org-custom.el19
1 files changed, 9 insertions, 10 deletions
diff --git a/lisp/org-custom.el b/lisp/org-custom.el
index 9400130..7d36bfb 100644
--- a/lisp/org-custom.el
+++ b/lisp/org-custom.el
@@ -41,7 +41,8 @@
(setq org-default-notes-file (concat org-directory "/inbox.org"))
(setq org-todo-keywords
- '((sequence "TODO" "PROGRESS" "VERIFY" "|" "DONE" "ABANDONED")))
+ '((sequence "TODO" "PROGRESS" "VERIFY" "|" "DONE" "ABANDONED")
+ (sequence "IDEA(i)" "QUESTION(q)" "|" "RESOLVED")))
(setq org-return-follows-link t)
@@ -50,14 +51,12 @@
(setq org-src-fontify-natively t)
-(use-package org-alert
- :ensure t
- :config
- (org-alert-enable)
- (setq org-alert-interval 3600 ; Once per hour!
- org-alert-notify-cutoff 30
- org-alert-notify-after-event-cutoff 30
- alert-default-style 'libnotify))
+;; (use-package org-alert
+;; :ensure t
+;; :config
+;; (setq org-alert-interval 36000 ; Once per hour!
+;; alert-default-style 'libnotify)
+;; (org-alert-enable))
(use-package org-roam
:ensure t
@@ -84,7 +83,7 @@
(setq org-capture-templates
'(("t" "Todo" entry (file+headline org-default-notes-file "Tasks")
"* TODO %?\n DEADLINE: %t")
- ("q" "Quick Notes" entry (file+headline org-default-notes-file "Quick Notes")
+ ("n" "Quick Notes" entry (file+headline org-default-notes-file "Quick Notes")
"* %?Created on %U\n %i")))
(defun org-archive-done-tasks ()