;; Init for org-mode (require 'org-install) (require 'org-pomodoro) (add-hook 'org-mode-hook (lambda () (turn-on-auto-fill))) (setq org-default-notes-file "~/org/notes.org") (global-set-key (kbd "C-c a") 'org-agenda) (global-set-key (kbd "C-c c") 'org-capture) (setq org-capture-templates '(("t" "Todo" entry (file+headline "~/org/notes.org" "Tasks") "* TODO %?\n %u\n %a") ("i" "Idea" entry (file+headline "~/org/notes.org" "Ideas") "* IDEA %?\n %u") ("e" "MailTo" entry (file+headline "~/org/notes.org" "E-mails") "* TODO mailto:%?"))) (setq org-clock-persist 'history) (org-clock-persistence-insinuate)