106 lines
3.8 KiB
EmacsLisp
106 lines
3.8 KiB
EmacsLisp
;;; org-init.el --- Org initialization
|
|
|
|
;; Copyright (C) 2012 Tom Willemsen
|
|
|
|
;; Author: Tom Willemsen <slash@drd>
|
|
;; Keywords:
|
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;;; Code:
|
|
|
|
(require 'appt)
|
|
(require 'oni)
|
|
(require 'org-contacts)
|
|
(require 'org-habit)
|
|
(require 'org-protocol)
|
|
|
|
(eval-after-load "org-crypt"
|
|
'(org-crypt-use-before-save-magic))
|
|
|
|
(setq org-agenda-custom-commands
|
|
'(("w" "Work todo." tags-todo "work")))
|
|
(setq org-agenda-prefix-format
|
|
'((agenda . " %i %-12:c%?-12t% s")
|
|
(timeline . " % s")
|
|
(todo . " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ")
|
|
(tags . " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ")
|
|
(search . " %i %-12:c")))
|
|
(setq org-agenda-sorting-strategy
|
|
'((agenda habit-down time-up priority-down category-keep)
|
|
(todo priority-down category-keep)
|
|
(tags priority-down category-keep)
|
|
(search category-keep)))
|
|
(setq org-agenda-tags-column -101)
|
|
(setq org-capture-templates
|
|
'(("t" "Task" entry (file "~/documents/org/tasks")
|
|
"* TODO %?")
|
|
("T" "Linked task" entry (file "~/documents/org/tasks")
|
|
"* TODO %?\n\n %a")))
|
|
(setq org-contacts-files '("~/documents/org/misc/contacts.org"))
|
|
(setq org-directory (expand-file-name "~/documents/org"))
|
|
(setq org-agenda-files
|
|
(append
|
|
`(,(concat org-directory "/tasks")
|
|
,(concat org-directory "/misc/contacts.org")
|
|
,(concat org-directory "/misc/bookmarks.org"))
|
|
org-agenda-files))
|
|
(setq org-agenda-show-outline-path nil)
|
|
(setq org-agenda-todo-ignore-deadlines 'far)
|
|
(setq org-agenda-todo-ignore-scheduled t)
|
|
(setq org-default-notes-file (concat org-directory "/org"))
|
|
(setq org-export-htmlize-output-type 'css)
|
|
(setq org-feed-alist
|
|
'(("MyEpisodes"
|
|
"http://www.myepisodes.com/rss.php?feed=mylist&uid=Slash&pwdmd5=04028968e1f0b7ee678b748a4320ac17"
|
|
"~/documents/org/tasks" "MyEpisodes"
|
|
:formatter oni:myepisodes-formatter)))
|
|
(setq org-hide-emphasis-markers t)
|
|
(setq org-outline-path-complete-in-steps t)
|
|
(setq org-refile-allow-creating-parent-nodes t)
|
|
(setq org-refile-targets '((nil . (:maxlevel . 6))))
|
|
(setq org-refile-use-outline-path 'file)
|
|
(setq org-return-follows-link t)
|
|
(setq org-src-fontify-natively t)
|
|
(setq org-tags-column -101)
|
|
(setq org-tags-exclude-from-inheritance '("crypt"))
|
|
(setq org-todo-keyword-faces
|
|
'(("TODO" :background "red")
|
|
("DONE" :background "forest green")
|
|
("SUCCEEDED" :background "forest green")
|
|
("WAITING" :background "orange" :foreground "black")
|
|
("CANCELLED" :background "orange red")
|
|
("FAILED" :background "orange red")
|
|
("WIP" :background "#ff9800" :foreground "black")
|
|
("HOLD" :background "orange" :foreground "black")
|
|
("ACQUIRE" :background "red")
|
|
("IGNORED" :background "#555555")))
|
|
(setq org-use-fast-todo-selection t)
|
|
(setq org-use-property-inheritance '("slug"))
|
|
|
|
(add-hook 'org-agenda-mode-hook 'org-agenda-to-appt)
|
|
|
|
(add-to-list 'org-modules 'habit)
|
|
|
|
(org-indent-mode t)
|
|
|
|
(org-agenda-to-appt)
|
|
(ad-activate 'org-agenda-redo)
|
|
|
|
(provide 'org-init)
|
|
;;; org-init.el ends here
|