forked from purcell/emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit-org.el
77 lines (60 loc) · 2.6 KB
/
init-org.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(setq org-log-done t)
(setq org-completion-use-ido t)
(setq org-edit-timestamp-down-means-later t)
(setq org-agenda-start-on-weekday nil)
(setq org-agenda-ndays 7)
; 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))))
; Targets start with the file name - allows creating level 1 tasks
(setq org-refile-use-outline-path (quote file))
; Targets complete in steps so we start with filename, TAB shows the next level of targets etc
(setq org-outline-path-complete-in-steps t)
(setq org-todo-keywords
(quote ((sequence "TODO(t)" "STARTED(s)" "|" "DONE(d!/!)")
(sequence "WAITING(w@/!)" "SOMEDAY(S)" "PROJECT(P@)" "|" "CANCELLED(c@/!)"))))
;; Save the running clock and all clock history when exiting Emacs, load it on startup
(setq org-clock-persistence-insinuate t)
(setq org-clock-persist t)
(setq org-clock-in-resume t)
;; Change task state to STARTED when clocking in
(setq org-clock-in-switch-to-state "STARTED")
;; Save clock data and notes in the LOGBOOK drawer
(setq org-clock-into-drawer t)
;; Removes clocked tasks with 0:00 duration
(setq org-clock-out-remove-zero-time-clocks t)
;; Show iCal calendars in the org agenda
(when *is-a-mac*
(eval-after-load "org"
'(if *is-a-mac* (require 'org-mac-iCal)))
(setq org-agenda-include-diary t)
(setq org-agenda-custom-commands
'(("I" "Import diary from iCal" agenda ""
((org-agenda-mode-hook
(lambda ()
(org-mac-iCal)))))))
(add-hook 'org-agenda-cleanup-fancy-diary-hook
(lambda ()
(goto-char (point-min))
(save-excursion
(while (re-search-forward "^[a-z]" nil t)
(goto-char (match-beginning 0))
(insert "0:00-24:00 ")))
(while (re-search-forward "^ [a-z]" nil t)
(goto-char (match-beginning 0))
(save-excursion
(re-search-backward "^[0-9]+:[0-9]+-[0-9]+:[0-9]+ " nil t))
(insert (match-string 0)))))
)
(eval-after-load "org"
'(progn
(require 'org-clock)
(require 'org-checklist)
(require 'org-fstree)
(require 'org-google-weather)))
(setq org-google-weather-cache-time 7200
org-google-weather-display-icon-p t
org-google-weather-icon-directory (expand-file-name "~/.emacs.d/site-lisp/google-weather-icons"))
(provide 'init-org)