forked from jwiegley/dot-emacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg-settings.el
119 lines (119 loc) · 11.3 KB
/
org-settings.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
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
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(org-M-RET-may-split-line (quote ((headline) (default . t))))
'(org-adapt-indentation nil)
'(org-agenda-auto-exclude-function (quote org-my-auto-exclude-function))
'(org-agenda-custom-commands (quote (("h" "Current Hotlist" tags "HOT&TODO=\"PROJECT\"" ((org-agenda-overriding-header "Current Hotlist"))) ("H" "Non-Hot Projects" tags "-HOT&TODO=\"PROJECT\"" ((org-agenda-overriding-header "Non-Hot Projects"))) ("A" "Priority #A tasks" agenda "" ((org-agenda-ndays 1) (org-agenda-overriding-header "Today's priority #A tasks: ") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote notregexp) "\\=.*\\[#A\\]"))))) ("b" "Priority #A and #B tasks" agenda "" ((org-agenda-ndays 1) (org-agenda-overriding-header "Today's priority #A and #B tasks: ") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote regexp) "\\=.*\\[#C\\]"))))) ("E" "Errands (next 7 days)" tags "Errand&TODO<>\"DONE\"&TODO<>\"CANCELED\"&STYLE<>\"habit\"&SCHEDULED<\"<+7d>\"" ((org-agenda-overriding-header "Errands (next 7 days)"))) ("Z" "Agenda (next 7 days)" agenda "" ((org-agenda-ndays 7) (org-agenda-overriding-header "Agenda (next 7 days)"))) ("r" "Uncategorized items" tags "CATEGORY=\"Inbox\"&LEVEL=2" ((org-agenda-overriding-header "Uncategorized items"))) ("W" "Waiting/delegated tasks" tags "TODO=\"WAITING\"|TODO=\"DELEGATED\"" ((org-agenda-overriding-header "Waiting/delegated tasks:") (org-agenda-sorting-strategy (quote (todo-state-up priority-down category-up))))) ("z" "Computer-related tasks" tags "AREA=\"Computer\"&TODO<>\"\"&TODO<>{DONE\\|CANCELED\\|NOTE\\|PROJECT}" ((org-agenda-files (quote ("~/Documents/Tasks/todo.txt"))) (org-agenda-overriding-header "Computer-related tasks: ") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote scheduled) (quote deadline) (quote timestamp) (quote regexp) "\\* \\(DEFERRED\\|SOMEDAY\\)"))) (org-agenda-sorting-strategy (quote (priority-down))))) ("u" "Unscheduled tasks" tags "AREA<>{Contracts}&TODO<>\"\"&TODO<>{DONE\\|CANCELED\\|NOTE\\|PROJECT}" ((org-agenda-files (quote ("~/Documents/Tasks/todo.txt"))) (org-agenda-overriding-header "Unscheduled tasks: ") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote scheduled) (quote deadline) (quote timestamp) (quote regexp) "\\* \\(DEFERRED\\|SOMEDAY\\)"))) (org-agenda-sorting-strategy (quote (priority-down))))) ("U" "Deferred tasks" tags "TODO=\"DEFERRED\"" ((org-agenda-files (quote ("~/Documents/Tasks/todo.txt"))) (org-agenda-overriding-header "Deferred tasks:"))) ("Y" "Someday tasks" tags "TODO=\"SOMEDAY\"" ((org-agenda-overriding-header "Someday tasks:"))) ("w" "Unscheduled work-related tasks" tags "AREA=\"Contracts\"&TODO<>\"\"&TODO<>{DONE\\|CANCELED\\|NOTE\\|PROJECT}" ((org-agenda-overriding-header "Unscheduled work-related tasks") (org-agenda-files (quote ("~/Documents/Tasks/todo.txt"))) (org-agenda-sorting-strategy (quote (todo-state-up priority-down category-up))) (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote scheduled) (quote deadline) (quote timestamp)))))) ("v" "All work-related tasks" tags "AREA=\"Contracts\"&TODO<>\"\"&TODO<>{DONE\\|CANCELED\\|NOTE\\|PROJECT}" ((org-agenda-overriding-header "Work-related tasks") (org-agenda-files (quote ("~/Documents/Tasks/todo.txt"))) (org-agenda-sorting-strategy (quote (alpha-down))))) ("n" "Notes" tags "TODO=\"NOTE\"" ((org-agenda-files (quote ("~/Documents/Tasks/archive-2009.txt" "~/Documents/Tasks/archive-2010.txt" "~/Documents/Tasks/archive-2011.txt" "~/Documents/Tasks/archive-2012.txt" "~/Documents/Tasks/archive.txt" "~/Documents/Tasks/notes.txt"))) (org-agenda-overriding-header "Notes") (org-agenda-sorting-strategy (quote (time-down))))) ("S" "Assembly Action Items" tags-todo "TODO<>\"PROJECT\"" ((org-agenda-files (quote ("~/Documents/Tasks/assembly.txt"))) (org-agenda-overriding-header "Assembly Action Items") (org-agenda-sorting-strategy (quote (alpha-up time-up))))))))
'(org-agenda-deadline-leaders (quote ("!D!: " "D%02d: ")))
'(org-agenda-default-appointment-duration 60)
'(org-agenda-files (quote ("~/doc/math-fp/math-abstractions.org" "~/Documents/Tasks/todo.txt" "~/Documents/Tasks/assembly.txt")))
'(org-agenda-fontify-priorities t)
'(org-agenda-include-diary t)
'(org-agenda-log-mode-items (quote (closed clock state)))
'(org-agenda-ndays 1)
'(org-agenda-persistent-filter t)
'(org-agenda-prefix-format (quote ((agenda . " %-11c%?-12t% s") (timeline . " % s") (todo . " %-11c") (tags . " %-11c"))))
'(org-agenda-scheduled-leaders (quote ("" "S%d: ")))
'(org-agenda-scheduled-relative-text "S%d: ")
'(org-agenda-scheduled-text "")
'(org-agenda-show-all-dates t)
'(org-agenda-skip-deadline-if-done t)
'(org-agenda-skip-scheduled-if-deadline-is-shown t)
'(org-agenda-skip-scheduled-if-done t)
'(org-agenda-skip-unavailable-files t)
'(org-agenda-sorting-strategy (quote ((agenda habit-down time-up todo-state-up priority-down category-keep tag-up) (todo priority-down category-keep) (tags priority-down category-keep) (search category-keep))))
'(org-agenda-start-on-weekday nil)
'(org-agenda-start-with-log-mode nil)
'(org-agenda-tags-column -100)
'(org-agenda-text-search-extra-files (quote (agenda-archives)))
'(org-agenda-use-time-grid nil)
'(org-archive-location "TODO-archive::")
'(org-archive-save-context-info (quote (time category itags)))
'(org-attach-method (quote mv))
'(org-babel-load-languages (quote ((emacs-lisp . t) (ditaa . t) (haskell . t) (calc . t))))
'(org-beamer-frame-default-options "fragile")
'(org-capture-templates (quote (("t" "Task" entry (file+headline "~/Documents/Tasks/todo.txt" "Inbox") "* TODO %?
SCHEDULED: %t
:PROPERTIES:
:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U
:END:" :prepend t))))
'(org-clock-idle-time 10)
'(org-clock-in-resume t)
'(org-clock-in-switch-to-state "STARTED")
'(org-clock-into-drawer "LOGBOOK")
'(org-clock-mode-line-total (quote current))
'(org-clock-modeline-total (quote current))
'(org-clock-out-remove-zero-time-clocks t)
'(org-clock-out-switch-to-state nil)
'(org-clock-persist (quote history))
'(org-completion-use-ido t)
'(org-confirm-elisp-link-function nil)
'(org-confirm-shell-link-function nil)
'(org-crypt-disable-auto-save nil)
'(org-cycle-global-at-bob t)
'(org-deadline-warning-days 14)
'(org-default-notes-file "~/Documents/Tasks/todo.txt")
'(org-directory "~/Documents/Tasks/")
'(org-ditaa-jar-path "~/bin/DitaaEps/DitaaEps.jar")
'(org-drawers (quote ("PROPERTIES" "CLOCK" "LOGBOOK" "OUT")))
'(org-edit-src-content-indentation 0)
'(org-enforce-todo-dependencies t)
'(org-export-babel-evaluate nil)
'(org-export-latex-classes (quote (("article" "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("linalg" "\\documentclass{article}
\\usepackage{linalgjh}
[DEFAULT-PACKAGES]
[EXTRA]
[PACKAGES]" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report" "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("beamer" "\\documentclass{beamer}" org-beamer-sectioning))))
'(org-extend-today-until 8)
'(org-fast-tag-selection-single-key (quote expert))
'(org-fontify-done-headline t)
'(org-footnote-section nil)
'(org-habit-preceding-days 42)
'(org-habit-today-glyph 45)
'(org-hide-leading-stars t)
'(org-id-locations-file "~/.emacs.d/data/org-id-locations")
'(org-insert-heading-respect-content t)
'(org-irc-link-to-logs t t)
'(org-latex-default-packages-alist (quote (("T1" "fontenc" t) ("" "fixltx2e" nil) ("" "graphicx" t) ("" "longtable" nil) ("" "float" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem" "ulem" t) ("" "amsmath" t) ("" "textcomp" t) ("" "marvosym" t) ("" "wasysym" t) ("" "amssymb" t) ("" "hyperref" nil) "\\tolerance=1000")))
'(org-mobile-agendas (quote ("Z")))
'(org-mobile-directory "~/Dropbox/Apps/MobileOrg")
'(org-mobile-files (quote ("~/Documents/Tasks/todo.txt")))
'(org-mobile-files-exclude-regexp "\\(TODO\\(-.*\\)?\\)\\'")
'(org-mobile-inbox-for-pull "~/Documents/Tasks/from-mobile.org")
'(org-modules (quote (org-gnus org-id org-info org-habit org-depend)))
'(org-priority-faces (quote ((65 :foreground "ForestGreen" :weight bold) (67 :foreground "dark gray" :slant italic))))
'(org-refile-targets (quote (("~/Documents/Tasks/todo.txt" :level . 1) ("~/Documents/Tasks/todo.txt" :todo . "PROJECT") ("~/Documents/Tasks/assembly.txt" :todo . "PROJECT") ("~/Documents/Tasks/notes.txt" :level . 1))))
'(org-return-follows-link t)
'(org-reverse-note-order t)
'(org-src-fontify-natively t)
'(org-tags-column -97)
'(org-time-clocksum-use-fractional t)
'(org-todo-keyword-faces (quote (("TODO" :foreground "medium blue" :weight bold) ("APPT" :foreground "medium blue" :weight bold) ("NOTE" :foreground "brown" :weight bold) ("STARTED" :foreground "dark orange" :weight bold) ("WAITING" :foreground "red" :weight bold) ("DELEGATED" :foreground "dark violet" :weight bold) ("DEFERRED" :foreground "dark blue" :weight bold) ("SOMEDAY" :foreground "dark blue" :weight bold) ("PROJECT" :foreground "#088e8e" :weight bold))))
'(org-todo-repeat-to-state "TODO")
'(org-use-property-inheritance (quote ("AREA")))
'(org-use-speed-commands t)
'(org-use-tag-inheritance nil)
'(org-x-backends (quote (ox-org ox-redmine)))
'(org-x-redmine-title-prefix-function (quote org-x-redmine-title-prefix))
'(org-x-redmine-title-prefix-match-function (quote org-x-redmine-title-prefix-match)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(org-agenda-done ((t (:foreground "ForestGreen"))))
'(org-done ((t (:foreground "ForestGreen" :weight bold))))
'(org-habit-alert-face ((((background light)) (:background "#f5f946"))))
'(org-habit-alert-future-face ((((background light)) (:background "#fafca9"))))
'(org-habit-clear-face ((((background light)) (:background "#8270f9"))))
'(org-habit-clear-future-face ((((background light)) (:background "#d6e4fc"))))
'(org-habit-overdue-face ((((background light)) (:background "#f9372d"))))
'(org-habit-overdue-future-face ((((background light)) (:background "#fc9590"))))
'(org-habit-ready-face ((((background light)) (:background "#4df946"))))
'(org-habit-ready-future-face ((((background light)) (:background "#acfca9"))))
'(org-headline-done ((t (:foreground "RosyBrown" :strike-through t))))
'(org-scheduled ((((class color) (min-colors 88) (background light)) nil)))
'(org-upcoming-deadline ((((class color) (min-colors 88) (background light)) (:foreground "Brown")))))