From 412aa9c18299a7aa61de535be783c073c6700115 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 12 Jul 2018 03:39:29 -0700 Subject: [WIP] One day we’ll all be able to enjoy this --- emacs/.emacs.d/init/oni-org-init.el | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'emacs/.emacs.d/init/oni-org-init.el') diff --git a/emacs/.emacs.d/init/oni-org-init.el b/emacs/.emacs.d/init/oni-org-init.el index 67559ff..85ced77 100644 --- a/emacs/.emacs.d/init/oni-org-init.el +++ b/emacs/.emacs.d/init/oni-org-init.el @@ -27,12 +27,35 @@ (require 'org) (require 'org-bullets) (require 'org-capture) +(require 'org-habit) (setq org-src-fontify-natively t) (setq org-return-follows-link t) (setq org-fontify-whole-heading-line t) (setq org-hide-emphasis-markers t) (setq org-return-follows-link t) +(setq org-use-fast-todo-selection tt) + +(setq org-agenda-files + '("~/documents/gtd/todo.org" + "~/documents/gtd/projects.org" + "~/documents/gtd/appointments.org")) + +(setq org-refile-targets + '(("~/documents/gtd/todo.org" :maxlevel . 1) + ("~/documents/gtd/projects.org" :level . 2) + ("~/documents/gtd/someday.org" :maxlevel . 2) + ("~/documents/gtd/appointments.org" :maxlevel . 1))) + +(setq org-capture-templates + '(("t" "TODO [inbox]" entry (file "~/documents/gtd/inbox.org") + "* TODO %i%?") + ("a" "Appointment" entry (file "~/documents/gtd/appointments.org") + "* %i%?\n %U"))) + +(setq org-todo-keywords + '((sequence "TODO(t)" "BLOCKED(b@)" "PROGRESS(p)" + "|" "DONE(d!)" "CANCELLED(c@)"))) (add-hook 'org-mode-hook 'auto-fill-mode) (add-hook 'org-mode-hook 'org-bullets-mode) -- cgit v1.2.3-54-g00ecf