parent
5dfc157746
commit
db479f0190
2 changed files with 18 additions and 0 deletions
@ -0,0 +1,17 @@ |
||||
;; 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) |
||||
Loading…
Reference in new issue