Add initial org-mode settings:
- Extra keywords - org root dirs - add note when ending TODO - some initial keymaps
This commit is contained in:
parent
d33ddb294a
commit
2cba135ce5
1 changed files with 12 additions and 1 deletions
|
|
@ -1,3 +1,14 @@
|
|||
;; TODO
|
||||
(require 'org)
|
||||
(define-key global-map "\C-cl" 'org-store-link)
|
||||
(define-key global-map "\C-ca" 'org-agenda)
|
||||
|
||||
;; when ending TODO (C-C C-t) end with a note + timestamp
|
||||
(setq org-log-done 'note)
|
||||
;; Specify root dir to search for agenda files, TODOs, ...
|
||||
(setq org-agenda-files '("~/org"))
|
||||
;; Add extra states for keywords
|
||||
(setq org-todo-keywords
|
||||
'((sequence "TODO" "IN-PROGRESS" "WAITING" "DONE")))
|
||||
|
||||
|
||||
(provide 'setup-org)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue