document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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!)"))))
');