[WIP] One day we’ll all be able to enjoy this
This commit is contained in:
parent
91d97b939a
commit
412aa9c182
1 changed files with 23 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue