emacs.d/lisp.d/config,org-mode.el

31 lines
599 B
EmacsLisp
Raw Normal View History

2013-08-17 22:54:35 +00:00
;
2013-10-19 21:46:27 +00:00
; Configure calenders to start weeks on Monday
; Set the default archive location
; Log the time when completing a task
; Configure the TODO keyword sequence
2013-08-17 22:54:35 +00:00
;
(setq
2013-10-19 21:43:33 +00:00
calendar-week-start-day 1
2015-06-13 14:18:57 +00:00
org-agenda-files
'(
"~/Documents/planning/contexts"
"~/Documents/planning/creatures"
"~/Documents/planning/projects"
"~/Documents/planning/reference"
)
2013-10-19 21:43:33 +00:00
org-archive-location "../archive/%s::"
org-log-done 'time
org-todo-keywords '((sequence "PENDING" "IN_PROGRESS" "DONE"))
)
2013-10-19 21:46:27 +00:00
;
; Configure key mappings
;
; C-c O = view the agenda
;
2014-10-15 01:47:36 +00:00
(global-set-key "\C-cO" 'org-agenda-list)
2013-10-19 21:46:27 +00:00
;