summary refs log tree commit diff
path: root/emacs/custom/fcuny-org.el
blob: 0d07ac232b4d1aecfad00063be006ae74b2edf73 (plain) (blame)
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
(require 'fcuny-org-custom)

(use-package org-ml
  :ensure t)

(require 'fcuny-vars)

(defvar fcuny/org-directory
  ;; if we're on a macOS machine, we're using a work machine, so we
  ;; store the notes inside a directory in the workspace. In other
  ;; cases, we store them in ~/documents/notes which is backed up by
  ;; syncthing.
  (if (memq window-system '(mac ns))
      (expand-file-name "~/workspace/notebooks"))
  (expand-file-name "~/documents/notes"))

(defvar fcuny/org-tasks-file
  (concat fcuny/org-directory "/tasks.org"))

(defvar fcuny/org-references-file
  (concat fcuny/org-directory "/references.org"))

(defvar fcuny/org-notes-file
  (concat fcuny/org-directory "/notes.org"))

(defvar fcuny/org-journal-file
  (concat fcuny/org-directory "/journal.org"))

(use-package htmlize
  :ensure t)

(use-package org
  :ensure t
  :mode (("\\.txt\\'" . org-mode))
  :hook ((org-mode                     . org-indent-mode)
         (org-mode                     . org-hide-block-all)
         (org-mode                     . visual-line-mode)
         (org-capture-after-finalize   . org-save-all-org-buffers)
         (org-capture-prepare-finalize . org-save-all-org-buffers))

  :bind (("C-c c" . org-capture)
         ("C-c a" . org-agenda))

  :config
  (defvar load-language-list '((emacs-lisp . t)
                               (python . t)
                               (shell . t)))
  (use-package ob-go
    :ensure t
    :init (cl-pushnew '(go . t) load-language-list))

  (org-babel-do-load-languages 'org-babel-load-languages
                               load-language-list)

  :custom
  (org-directory fcuny/org-directory)

  ;; hide emphasis markup
  (org-hide-emphasis-markers t)

  ;; when archiving, inherit the tags from the parent
  (org-archive-subtree-add-inherited-tags t)

  ;; display unicode characters
  (org-pretty-entities t)

  ;; log the time of completion
  (org-log-done 'time)

  (org-startup-indented t)

  (org-cycle-separator-lines 0)
  (org-startup-folded 'content)
  (org-todo-keywords '((type "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED")))
  (org-todo-keyword-faces
   '(("TODO" . (:foreground "red" :weight bold))
     ("STARTED" . (:foreground "red" :weight bold))
     ("WAITING" . (:foreground "blue" :weight bold))))

  ;; priorities
  (org-priority-start-cycle-with-default nil) ;; Start one over/under default value.
  (org-highest-priority ?A)
  (org-lowest-priority ?D)
  (org-default-priority ?C) ;; Ensures unset tasks have low priority.

  ;; agenda related
  (calendar-week-start-day 1)      ;; org-mode uses calendar for the date picker, and I want this to start on Monday
  (org-agenda-start-on-weekday 1)  ;; this is specific to org-agenda
  (org-agenda-files `(,fcuny/org-notes-file
                      ,fcuny/org-tasks-file
                      ,fcuny/org-journal-file))

  ;; refile
  (org-refile-use-cache nil)
  (org-refile-targets '((org-agenda-files . (:maxlevel . 3))))
  (org-refile-use-outline-path 'file)
  (org-outline-path-complete-in-steps nil)
  (org-refile-allow-creating-parent-nodes 'confirm)

  ;; org babel related
  ;; prevent the conversion of spaces into tabs (necessary for Python code exports)
  (org-src-fontify-natively t)
  (org-src-preserve-indentation t)
  (org-edit-src-content-indentation t)

  ;; I want to follow links on RET
  (org-return-follows-link t)

  ;; some configurations for exporting document
  (org-export-with-toc nil)
  (org-export-with-section-numbers nil)

  ;; A few abbreviations I use regularly
  (org-link-abbrev-alist
   '(("src"  . "~/workspace/%s")
     ("jira" . "https://jira.twitter.biz/browse/%s")
     ("ph"   . "https://phabricator.twitter.biz/%s")
     ("go"   . "http://go/%s")))

  ;; entries
  (org-blank-before-new-entry nil)
  (org-blank-before-new-entry (quote ((heading . nil)
				                      (plain-list-item . nil))))

  ;; see https://github.com/abo-abo/swiper/issues/986
  (org-goto-interface 'outline-path-completion)

  (org-reverse-note-order t))

(use-package org-bullets
  :ensure t
  :after (org)
  :hook (org-mode . org-bullets-mode))

(use-package org-capture
  :ensure nil
  :after (org)
  :custom
  (org-capture-templates
   `(("t" "Todo [inbox]" entry
      (file+headline ,fcuny/org-tasks-file "Tasks")
      "* TODO [#D] %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n")

     ("n" "Note" entry
      (file ,fcuny/org-notes-file)
      "* NOTE %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n")

     ("j" "Journal" entry
      (file+olp+datetree ,fcuny/org-journal-file)
      "* %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n" :tree-type month))))

(provide 'fcuny-org)