2 Commits

Author SHA1 Message Date
Marc Pohling 48aa14f86a updated org-node 1 month ago
Marc Pohling 1c647556a7 new template for oneshot tasks 1 month ago
1 changed files with 15 additions and 2 deletions
Unified View
  1. 17
      config.org

17
config.org

@ -1366,12 +1366,18 @@ nil)))
(setq org-todo-keywords (setq org-todo-keywords
'((sequence "WAIT" "OPEN" "NEXT" "TODO" "|" "DONE" "DROP"))) '((sequence "WAIT" "OPEN" "NEXT" "TODO" "|" "DONE" "DROP")))
(setq org-capture-templates (setq org-capture-templates
'(("t" "telephone call"
'(("p" "telephone call"
entry (file+olp+datetree "p:/Eigene Dateien/Notizen/phone_calls.org") entry (file+olp+datetree "p:/Eigene Dateien/Notizen/phone_calls.org")
"* call [%<%Y-%m-%d %H:%M>] %?" "* call [%<%Y-%m-%d %H:%M>] %?"
:empty-lines 0 :empty-lines 0
:prepare-finalize (org-id-get-create) :prepare-finalize (org-id-get-create)
:jump-to-captured t) :jump-to-captured t)
("t" "simple task"
entry (file+headline "p:/Eigene Dateien/Notizen/tasks.org" "Todos")
"* TODO %?\n :PROPERTIES:\n :CREATED: %U\n :END:\n"
:prepend t
:prepare-finalize (org-id-get-create)
:jump-to-captured t)
("o" "OP-Verwaltung neuer Eintrag" ("o" "OP-Verwaltung neuer Eintrag"
entry (file+olp+datetree "p:/Eigene Dateien/Notizen/op-verwaltung.org") entry (file+olp+datetree "p:/Eigene Dateien/Notizen/op-verwaltung.org")
"* OP [%<%Y-%m-%d %H:%M>] %?" "* OP [%<%Y-%m-%d %H:%M>] %?"
@ -1816,13 +1822,20 @@ https://github.com/meedstrom/org-node
no sqlite, just plain text and linking with ids no sqlite, just plain text and linking with ids
not sure if actually better not sure if actually better
#+begin_src emacs-lisp #+begin_src emacs-lisp
;;requirement for org-node
(use-package org-mem
:ensure (:host github :repo "meedstrom/org-mem"))
(use-package org-node (use-package org-node
:ensure t :ensure t
:after org :after org
:custom :custom
;; add notes dir for org-node so I dont need to add everything to org-agenda-files and make it sluggish ;; add notes dir for org-node so I dont need to add everything to org-agenda-files and make it sluggish
(org-node-extra-id-dirs MY--PATH_ORG_FILES)
(org-node-extra-id-dirs (list MY--PATH_ORG_FILES)) ;;maybe obsolete due to org-mem-watch-dirs
(org-mem-watch-dirs (list MY--PATH_ORG_FILES))
(org-mem-do-sync-with-org-id t)
:config :config
(org-mem-updater-mode)
(org-node-cache-mode) (org-node-cache-mode)
(org-node-backlink-mode) (org-node-backlink-mode)
(org-node-context-follow-mode) (org-node-context-follow-mode)

Loading…
Cancel
Save