Advertisement
h0rr0rr_drag0n

Untitled

Apr 10th, 2011
2,645
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.72 KB | None | 0 0
  1. (global-set-key "\e\el" 'org-store-link)
  2. (global-set-key "\e\ec" 'org-capture)
  3. (global-set-key "\e\ea" 'org-agenda)
  4. (global-set-key "\e\eb" 'org-iswitchb)
  5.  
  6. (setq org-agenda-files (quote ("~/.org/")))
  7.  
  8. ;my prefer identation
  9. (setq org-startup-indented t)
  10.  
  11. ;;logging stuff
  12. (setq org-log-done (quote time))
  13. (setq org-log-into-drawer nil)
  14. (setq org-log-redeadline (quote note))
  15. (setq org-log-reschedule (quote time))
  16. ;todo keywords
  17. (setq org-todo-keywords
  18.       (quote ((sequence "TODO(t!)" "NEXT(n!)" "WAITING(w@/!)" "STARTED(s!)" "|" "DONE(d!/!)" "CANCELLED(c@/!)")
  19.               (sequence "QUOTE(Q!)" "QUOTED(D!)" "|" "APPROVED(A@)" "EXPIRED(E@)" "REJECTED(R@)")
  20.               (sequence "OPEN(O!)" "|" "CLOSED(C!)"))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement