Browse Source

fixed conditional settings

master
Marc Pohling 7 months ago
parent
commit
7a3148fc65
1 changed files with 10 additions and 5 deletions
  1. 15
      config.org

15
config.org

@ -1214,13 +1214,18 @@ Necessary when updating roam agenda todos."
nil)))
:config
(when *work_remote*
(org-add-link-type "outlook" 'my--org-outlook-open))
:custom
(when *work_remote*
(org-todo-keywords
'((sequence "OPEN" "TODO" "UNCLEAR" "|" "DONE" "IMPOSSIBLE" "CANCELLED"))))
(org-add-link-type "outlook" 'my--org-outlook-open)
(setq org-todo-keywords
'((sequence "OPEN" "TODO" "UNCLEAR" "|" "DONE" "IMPOSSIBLE" "CANCELLED")))
(setq org-capture-templates
'(("t" "telephone call" entry
; (file+olp+datetree (concat MY--PATH_ORG_FILES "phone_calls.org"))
(file+datetree "p:/Eigene Dateien/Notizen/phone_calls.org")
"* [%<%Y-%m-%d %H:%M>] %?"
:empty-lines 0 :jump-to-captured t))))
(when *sys/linux*
(org-pretty-entities t))
:custom
(org-startup-truncated t)
(org-startup-align-all-tables t)
(org-src-fontify-natively t) ;; use syntax highlighting in code blocks

Loading…
Cancel
Save