2019-12-07 23:09:25 +01:00
|
|
|
;;;; Org mode configuration.
|
|
|
|
;; Enable Org mode.
|
2020-01-05 23:51:24 +01:00
|
|
|
(use-package org
|
|
|
|
:ensure t
|
2020-01-06 02:22:45 +01:00
|
|
|
:init (add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
|
|
|
|
:config
|
|
|
|
(setq org-todo-keywords
|
|
|
|
'((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CANCELED(c@)"))))
|
|
|
|
|
2019-12-07 23:09:25 +01:00
|
|
|
|
|
|
|
(provide 'jenga-org)
|