aboutsummaryrefslogtreecommitdiffstats
path: root/_spacemacs.d/config/my-org.el
blob: e16f922940d05117ccf07a85699fef94850c7001 (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
;;; my-org.el --- Custom Configurations for Org Mode
;; -*- mode: emacs-lisp -*-
;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
;;
;; Aaron LI
;; Created: 2016-05-31
;;

;;; Commentary:
;; Custom configurations for Emacs Org mode
;;
;; [1] Spacemacs: Org layer
;;     https://github.com/syl20bnr/spacemacs/blob/master/layers/org/README.org
;; [2] Norang: Org Mode (by Bernt Hansen)
;;     http://doc.norang.ca/org-mode.html
;;

;;; Code:

;; Default task to clock in whenever the clock normally stops
(defvar my/organization-task-id "bb7f1326-bda4-11e6-a30d-185e0f33a428")

;; Allow single character alphabetical bullets
;; Need to be set before `org.el' is loaded
(setq org-list-allow-alphabetical t)

;; NOTE:
;; Spacemacs use the `org' from the ELPA instead of the one shipped with
;; Emacs.  Therefore, any `org'-related code should NOT be loaded before
;; `dotspacemacs/user-config'.
(with-eval-after-load 'org
  (require 'org-habit)
  (require 'org-clock)
  (require 'ox-latex)

  ;; Load custom helper functions for Org
  (require 'my-org-helpers)

  ;; Default location to look for Org files
  (setq org-directory '("~/org"))
  ;; Directories of files / files to be used for agenda display
  (setq org-agenda-files '("~/org"))
  ;; Default file for storing notes, also the fallback file for capture
  (setq org-default-notes-file "~/org/refile.org")

  ;; TODO state keywords and face settings
  (setq org-todo-keywords
        '((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)")
          (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|"
                    "CANCELLED(c@/!)" "MAIL" "PHONE" "MEETING")))
  ;(setq org-todo-keyword-faces
  ;      '(("TODO"      :foreground "red"          :weight bold)
  ;        ("NEXT"      :foreground "blue"         :weight bold)
  ;        ("DONE"      :foreground "forest green" :weight bold)
  ;        ("WAITING"   :foreground "orange"       :weight bold)
  ;        ("HOLD"      :foreground "magenta"      :weight bold)
  ;        ("CANCELLED" :foreground "forest green" :weight bold)
  ;        ("MAIL"      :foreground "forest green" :weight bold)
  ;        ("PHONE"     :foreground "forest green" :weight bold)
  ;        ("MEETING"   :foreground "forest green" :weight bold)))
  ;; Automatically assign tags on state changes
  (setq org-todo-state-tags-triggers
        '(("CANCELLED" ("CANCELLED" . t))  ;; add "CANCELLED" tag
          ("WAITING" ("WAITING" . t))  ;; add "WAITING" tag
          ("HOLD" ("WAITING") ("HOLD" . t))
          (done ("WAITING") ("HOLD"))  ;; remove "WAITING" and "HOLD" tags
          ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
          ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
          ("DONE" ("WAITING") ("CANCELLED") ("HOLD"))))

  ;; Allow to select a state while bypass the associated logging
  (setq org-treat-S-cursor-todo-selection-as-state-change nil)

  ;; Capture templates
  (setq org-capture-templates
        '(("t" "Task" entry (file "")
           "* TODO %?\n%U\n%a\n" :clock-in t :clock-resume t)
          ("n" "Note" entry (file "")
           "* %? :NOTE:\n%U\n%a\n" :clock-in t :clock-resume t)
          ("d" "Diary" entry (file+datetree "diary.org")
           "* %?\n%U\n" :clock-in t :clock-resume t)
          ("p" "Phone Call" entry (file "")
           "* PHONE %? :PHONE:\n%U" :clock-in t :clock-resume t)
          ("m" "Meeting" entry (file "")
           "* MEETING with %? :MEETING:\n%U" :clock-in t :clock-resume t)
          ("h" "Habit" entry (file "")
           "* NEXT %?\n%U\n%a\nSCHEDULED: %(format-time-string \"%<<%Y-%m-%d %a .+1d/3d>>\")\n:PROPERTIES:\n:STYLE: habit\n:REPEAT_TO_STATE: NEXT\n:END:\n")
          ))

  ;; Remove empty `LOGBOOK' drawers on clock out
  (add-hook 'org-clock-out-hook 'my/remove-empty-drawer-on-clock-out 'append)

  ;; More handy shortcuts
  (global-set-key (kbd "<f9>") 'org-agenda)

  ;; Exclude `DONE' state tasks from refile targets
  (setq org-refile-target-verify-function 'my/verify-refile-target)

  ;; Do not dim blocked tasks
  (setq org-agenda-dim-blocked-tasks nil)
  ;; Compact the block agenda view
  (setq org-agenda-compact-blocks t)
  ;; Custom agenda command definitions
  (setq org-agenda-custom-commands
        '(("N" "Notes" tags "NOTE"
           ((org-agenda-overriding-header "Notes")
            (org-tags-match-list-sublevels t)))
          ("h" "Habits" tags-todo "STYLE=\"habit\""
           ((org-agenda-overriding-header "Habits")
            (org-agenda-sorting-strategy
             '(todo-state-down effort-up category-keep))))
          (" " "Agenda"
           ((agenda "" nil)
            (tags "REFILE"
                  ((org-agenda-overriding-header "Tasks to Refile")
                   (org-tags-match-list-sublevels nil)))
            (tags-todo "-CANCELLED/!"
                       ((org-agenda-overriding-header "Stuck Projects")
                        (org-agenda-skip-function 'my/skip-non-stuck-projects)
                        (org-agenda-sorting-strategy
                         '(category-keep))))
            (tags-todo "-HOLD-CANCELLED/!"
                       ((org-agenda-overriding-header "Projects")
                        (org-agenda-skip-function 'my/skip-non-projects)
                        (org-tags-match-list-sublevels 'indented)
                        (org-agenda-sorting-strategy
                         '(category-keep))))
            (tags-todo "-CANCELLED/!NEXT"
                       ((org-agenda-overriding-header
                         (concat "Project Next Tasks"
                                 (if my/hide-scheduled-and-waiting-next-tasks
                                     ""
                                   " (including WAITING and SCHEDULED tasks)")))
                        (org-agenda-skip-function 'my/skip-projects-and-habits-and-single-tasks)
                        (org-tags-match-list-sublevels t)
                        (org-agenda-todo-ignore-scheduled my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-todo-ignore-deadlines my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-todo-ignore-with-date my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-sorting-strategy
                         '(todo-state-down effort-up category-keep))))
            (tags-todo "-REFILE-CANCELLED-WAITING-HOLD/!"
                       ((org-agenda-overriding-header
                         (concat "Project Subtasks"
                                 (if my/hide-scheduled-and-waiting-next-tasks
                                     ""
                                   " (including WAITING and SCHEDULED tasks)")))
                        (org-agenda-skip-function 'my/skip-non-project-tasks)
                        (org-agenda-todo-ignore-scheduled my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-todo-ignore-deadlines my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-todo-ignore-with-date my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-sorting-strategy
                         '(category-keep))))
            (tags-todo "-REFILE-CANCELLED-WAITING-HOLD/!"
                       ((org-agenda-overriding-header
                         (concat "Standalone Tasks"
                                 (if my/hide-scheduled-and-waiting-next-tasks
                                     ""
                                   " (including WAITING and SCHEDULED tasks)")))
                        (org-agenda-skip-function 'my/skip-project-tasks)
                        (org-agenda-todo-ignore-scheduled my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-todo-ignore-deadlines my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-todo-ignore-with-date my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-sorting-strategy
                         '(category-keep))))
            (tags-todo "-CANCELLED+WAITING|HOLD/!"
                       ((org-agenda-overriding-header
                         (concat "Waiting and Postponed Tasks"
                                 (if my/hide-scheduled-and-waiting-next-tasks
                                     ""
                                   " (including WAITING and SCHEDULED tasks)")))
                        (org-agenda-skip-function 'my/skip-non-tasks)
                        (org-tags-match-list-sublevels nil)
                        (org-agenda-todo-ignore-scheduled my/hide-scheduled-and-waiting-next-tasks)
                        (org-agenda-todo-ignore-deadlines my/hide-scheduled-and-waiting-next-tasks)))
            (tags "-REFILE/"
                  ((org-agenda-overriding-header "Tasks to Archive")
                   (org-agenda-skip-function 'my/skip-non-archivable-tasks)
                   (org-tags-match-list-sublevels nil))))
           nil)))

  (defun my/org-auto-exclude-function (tag)
    "Automatic task exclusion in the agenda with `/ RET'"
    (and (cond
          ((string= tag "hold") t)  ; exclude "HOLD" tasks
         )
         (concat "-" tag)))
  (setq org-agenda-auto-exclude-function 'my/org-auto-exclude-function)

  ;; Clocking
  ;;
  ;; Resume clocking task when Emacs is restarted
  (org-clock-persistence-insinuate)
  ;; Save the running clock and all clock history when exiting Emacs,
  ;; and load it on startup
  (setq org-clock-persist t)
  ;; Do not prompt to resume an active clock
  (setq org-clock-persist-query-resume nil)
  ;; Enable auto clock resolution for finding open clocks
  (setq org-clock-auto-clock-resolution 'when-no-clock-is-running)
  ;; Show lot of clocking history so it's easy to pick items off the list
  (setq org-clock-history-length 23)
  ;; Resume clocking task on clock-in if the clock is open
  (setq org-clock-in-resume t)
  ;; Change tasks to `NEXT' when clocking in
  (setq org-clock-in-switch-to-state 'my/clock-in-to-next)
  ;; Separate drawers for clocking and logs
  (setq org-drawers '("PROPERTIES" "LOGBOOK"))
  ;; Save clock data and state changes and notes in the `LOGBOOK' drawer
  (setq org-clock-into-drawer t)
  ;; Remove clocked tasks with 0:00 duration
  (setq org-clock-out-remove-zero-time-clocks t)
  ;; Clock out when moving task to a done state
  (setq org-clock-out-when-done t)
  (add-hook 'org-clock-out-hook 'my/clock-out-maybe 'append)
  ;; Use discrete minute intervals (no rounding) increments for time editing
  (setq org-time-stamp-rounding-minutes '(1 1))

  ;; Agenda clock report parameters
  (setq org-agenda-clockreport-parameter-plist
        '(:link t :maxlevel 5 :fileskip0 t :compact t :narrow 80))
  ;; Set default column view headings: Task Effort ClockSummary
  (setq org-columns-default-format
        "%80ITEM(task) %10Effort(Effort){:} %10CLOCKSUM")
  ;; Global `Effort' estimate values,
  ;; and global `STYLE' property values for completion
  (setq org-global-properties
        '(("Effort_ALL" . "0:15 0:30 0:45 1:00 2:00 3:00 4:00 5:00 6:00 0:00")
          ("STYLE_ALL" . "habit")))
  ;; Agenda log mode items to display (closed and state changes by default)
  (setq org-agenda-log-mode-items '(closed state))

  ;; Tags with fast selection keys
  (setq org-tag-alist
        '((:startgroup)
          ("@office" . ?o)
          ("@home" . ?H)
          ("@dorm" . ?d)
          (:endgroup)
          ("WAITING" . ?w)
          ("HOLD" . ?h)
          ("PERSONAL" . ?P)
          ("WORK" . ?W)
          ("ORG" . ?O)
          ("ASTRO" . ?a)
          ("NOTE" . ?n)
          ("CANCELLED" . ?c)
          ("FLAGGED" . ??)))
  ;; Allow setting single tags without the menu
  (setq org-fast-tag-selection-single-key (quote expert))
  ;; For tag searches ignore tasks with scheduled and deadline dates
  (setq org-agenda-tags-todo-honor-ignore-options t)

  ;; Any task with a subtask using a todo keyword is a project.
  ;; Projects are "stuck" if they have no subtask with a `NEXT' todo keyword.

  ;; Start the agenda overview on the current day
  (setq org-agenda-start-on-weekday nil)
  ;; Show week's agenda (default)
  (setq org-agenda-span 'week)
  ;; Disable the default stuck projects agenda view
  (setq org-stuck-projects '("" nil nil ""))

  ;; Archive
  (setq org-archive-mark-done nil)
  (setq org-archive-location "%s_archive::* Archived Tasks")

  ;; Enable in-using Babel languages
  (org-babel-do-load-languages
   'org-babel-load-languages
   '((emacs-lisp . t)
     (sh . t)
     (python . t)
     (ditaa . t)
     ))

  ;; Enable `org-indent-mode' by default at startup
  (setq org-startup-indented t)

  ;; Set the bullet symbols for `org-bullets'
  (setq org-bullets-bullet-list '("♠" "♥" "♣" "♦"))  ;; "SHoCkeD" ordering

  ;; Set the path to the `ditaa' program
  (setq org-ditaa-jar-path "~/.spacemacs.d/local/ditaa/ditaa.jar")

  ;; END: Org-mode configurations
  )


(provide 'my-org)

;;; my-org.el ends here