emacs.d/lisp.d/config,org-mode.el
2015-06-13 07:18:57 -07:00

31 lines
599 B
EmacsLisp

;
; Configure calenders to start weeks on Monday
; Set the default archive location
; Log the time when completing a task
; Configure the TODO keyword sequence
;
(setq
calendar-week-start-day 1
org-agenda-files
'(
"~/Documents/planning/contexts"
"~/Documents/planning/creatures"
"~/Documents/planning/projects"
"~/Documents/planning/reference"
)
org-archive-location "../archive/%s::"
org-log-done 'time
org-todo-keywords '((sequence "PENDING" "IN_PROGRESS" "DONE"))
)
;
; Configure key mappings
;
; C-c O = view the agenda
;
(global-set-key "\C-cO" 'org-agenda-list)
;