summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-org.el
blob: 8b47fa0faca876a309dda4ad7df003157596e893 (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
(use-package org
  :ensure t
  :hook ((org-mode . visual-line-mode)
         (org-mode . org-indent-mode))
  :custom
  (org-startup-indented t)
  (org-directory "~/GDrive/notebooks")
  (org-default-notes-file (concat org-directory "/inbox.org"))
  (org-agenda-start-on-weekday 1)
  (org-capture-templates
   (quote (("t" "Todo" entry
            (file+headline "~/GDrive/notebooks/personal/todo.org" "New")
            "* TODO %?\n")
           ("T" "Work Todo" entry
            (file+headline "~/GDrive/notebooks/twitter/todo.org" "New")
            "* TODO %?\n")
           ("d" "Diary" entry
            (file+olp+datetree "~/GDrive/notebooks/personal/diary.org")
            "* %U %?\n" :tree-type week)
           ("D" "Work Diary" entry
            (file+olp+datetree "~/GDrive/notebooks/twitter/diary.org")
            "* %U %?\n" :tree-type week)))))

(provide 'fcuny-org)