| (setq org-agenda-files (quote ("~/Documents/org" | (setq org-agenda-files (quote ("~/Documents/org" | ||||
| "~/org"))) | "~/org"))) | ||||
| ;;(add-to-list 'org-agenda-custom-commands | |||||
| ;; '("W" "Weekly review" | |||||
| ;; agenda "" | |||||
| ;; ((org-agenda-start-day "-7d") | |||||
| ;; (org-agenda-span 14) | |||||
| ;; (org-agenda-start-on-weekday 1)))) | |||||
| ; Refile targets include this file and any file contributing to the agenda - up to 5 levels deep | ; Refile targets include this file and any file contributing to the agenda - up to 5 levels deep | ||||
| (setq org-refile-targets (quote ((nil :maxlevel . 5) (org-agenda-files :maxlevel . 5)))) | (setq org-refile-targets (quote ((nil :maxlevel . 5) (org-agenda-files :maxlevel . 5)))) | ||||
| ; Targets start with the file name - allows creating level 1 tasks | ; Targets start with the file name - allows creating level 1 tasks | ||||
| ;;capture todo items using C-c c t | ;;capture todo items using C-c c t | ||||
| (define-key global-map (kbd "C-c c") 'org-capture) | (define-key global-map (kbd "C-c c") 'org-capture) | ||||
| (setq org-capture-templates | (setq org-capture-templates | ||||
| '(("t" "todo" entry (file+headline "~/Documents/bingen/Org/bingen.org" "Tasks") | |||||
| "* TODO [#A] %?\nSCHEDULED: %(org-insert-time-stamp (org-read-date nil t \"+0d\"))\n%a\n"))) | |||||
| '(("t" "todo" entry (file+headline "~/Documents/org/main.org" "Tasks") | |||||
| "* TODO [#A] %?\nSCHEDULED: %(org-insert-time-stamp (org-read-date nil t \"+0d\"))\n%a\n") | |||||
| ("c" "crypto journal" | |||||
| entry (file+datetree "~/Documents/criptochuflas/crypto_journal.org") | |||||
| "* entry") | |||||
| ("d" "day time track" | |||||
| entry (file+datetree "~/Documents/org/time_tracker.org") | |||||
| "*** | |||||
| **** Work | |||||
| ***** Keybase and catch up | |||||
| ***** Meetings: | |||||
| ***** Meta: check-ins | |||||
| **** Rest | |||||
| **** Eat | |||||
| ***** Lunch | |||||
| ***** Dinner | |||||
| **** Kids | |||||
| ***** Morning | |||||
| ***** Afternoon | |||||
| ***** Evening | |||||
| **** Workout | |||||
| **** Errands | |||||
| **** Learn | |||||
| "))) | |||||
| (provide 'init-org) | (provide 'init-org) |