forked from bbatsov/prelude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkmt-org.el
22 lines (20 loc) · 827 Bytes
/
kmt-org.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;;;; Org-Mode
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(setq org-agenda-files '("~/org"))
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
(setq org-agenda-custom-commands
'(
("n" "Agenda and all TODO's"
((agenda "" (alltodo)))
)
("R" "Report completed tasks from previous week"
((agenda "" ((org-agenda-entry-types '(:timestamp :sexp :scheduled))
(org-agenda-show-log t)))))
;; ("W" "Completed and/or deferred tasks from previous week"
;; ((agenda "" ((org-agenda-span 5)
;; (org-agenda-start-day "lastweek")
;; (org-agenda-entry-types '(:timestamp :sexp :scheduled))
;; (org-agenda-show-log t)))))
;; other commands
)
)