You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
546 B
17 lines
546 B
;; Init for org-mode |
|
|
|
(require 'org-install) |
|
(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)
|
|
|