Skip to content

Commit

Permalink
update custom config files
Browse files Browse the repository at this point in the history
  • Loading branch information
eric authored and eric committed Mar 1, 2010
1 parent bc149df commit 9e77564
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1,799 deletions.
13 changes: 9 additions & 4 deletions custom.el
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@
(setq org-default-notes-file (concat org-directory "/gtd.org"))
(global-set-key (kbd "C-c r") 'org-remember)

(setq org-agenda-files (list "~/gtd/gtd.org"))
(setq org-agenda-files (list "~/gtd/gtd.org" "~/gtd/notes.org"))
(setq org-remember-templates
'(("Task" ?t "* TODO %^{Topic} \n%i%?\n" "~/gtd/gtd.org" "Task")
("Inbox" ?i "* %^{Topic} \n\%i%?\n" "~/gtd/gtd.org" "Inbox")
("Note" ?n "\n* %U %^{Note} \n\%i%?\n" "~/gtd/notes.org")))
'(("Task" ?t "* TODO %^{Topic} \n%i%?\n" org-default-notes-file "Task")
("Administrator" ?a "* TODO %^{Topic} \n%i%?\n" org-default-notes-file "Administrator")
("Maintance" ?e "* TODO %^{Topic} \n%i%?\n" org-default-notes-file "Maintance")
("Regulatory" ?r "* TODO %^{Topic} \n%i%?\n" org-default-notes-file "Regulatory")
("Asset" ?f "* TODO %^{Topic} \n%i%?\n" org-default-notes-file "Asset")
("Private" ?p "* TODO %^{Topic} \n%i%?\n" org-default-notes-file "Private")
("Inbox" ?i "* %^{Topic} \n\%i%?\n" org-default-notes-file "Inbox")
("Note" ?n "\n* %U %^{Note} \n\%i%?\n" (concat org-directory "/notes.org"))))

Loading

0 comments on commit 9e77564

Please sign in to comment.