From b7afba2c86112bdaa4604f517481b9ba397ed085 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 27 Nov 2012 11:13:24 +0100 Subject: .emacs.d/site-lisp/org-init.el --- .emacs.d/site-lisp/org-init.el | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) (limited to '.emacs.d/site-lisp/org-init.el') diff --git a/.emacs.d/site-lisp/org-init.el b/.emacs.d/site-lisp/org-init.el index 6f28432..cccf659 100644 --- a/.emacs.d/site-lisp/org-init.el +++ b/.emacs.d/site-lisp/org-init.el @@ -34,24 +34,13 @@ '(org-crypt-use-before-save-magic)) (setq org-agenda-custom-commands - '(("pa" "Avandu" tags-todo "slug=\"avandu\"") - ("pb" "Blog" tags-todo "slug=\"blog\"") - ("pc" "Configuration" tags-todo "slug=\"configuration\"") - ("pd" "dispass.el" tags-todo "slug=\"dispass.el\"") - ("pD" "DVDroid" tags-todo "slug=\"dvdroid\"") - ("pe" "Eye on Manga" tags-todo "slug=\"eye-on-manga\"") - ("pG" "gDisPass" tags-todo "slug=\"gdispass\"") - ("pg" "gitto" tags-todo "slug=\"gitto\"") - ("pi" "Ideas" tags-todo "slug=\"ideas\"") - ("pM" "Maintenance" tags-todo "slug=\"maintenance\"") - ("pme" "Metal Express Radio.el" tags-todo - "slug=\"metal-express-radio.el\"") - ("pmo" "Mode Icons" tags-todo "slug=\"mode-icons\"") - ("pmy1" "myAethon" tags-todo "slug=\"myaethon\"") - ("pmy2" "myAethon2" tags-todo "slug=\"myaethon2\"") - ("ps" "Sawfish Naquadah theme" tags-todo - "slug=\"sawfish-naquadah-theme\"") - ("w" "Work todo." tags-todo "work"))) + '(("w" "Work todo." tags-todo "work"))) +(setq org-agenda-prefix-format + '((agenda . " %i %-12:c%?-12t% s") + (timeline . " % s") + (todo . " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ") + (tags . " %i %-12:c") + (search . " %i %-12:c"))) (setq org-agenda-sorting-strategy '((agenda habit-down time-up priority-down category-keep) (todo priority-down category-keep) @@ -85,6 +74,7 @@ ,(concat org-directory "/misc/contacts.org") ,(concat org-directory "/misc/bookmarks.org")) org-agenda-files)) +(setq org-agenda-show-outline-path nil) (setq org-agenda-todo-ignore-deadlines 'far) (setq org-agenda-todo-ignore-scheduled t) (setq org-default-notes-file (concat org-directory "/org")) -- cgit v1.2.3-54-g00ecf From b229154af604f297c8d903649023f70fe8388613 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Wed, 28 Nov 2012 10:14:25 +0100 Subject: .emacs.d/site-lisp/org-init.el --- .emacs.d/site-lisp/org-init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.emacs.d/site-lisp/org-init.el') diff --git a/.emacs.d/site-lisp/org-init.el b/.emacs.d/site-lisp/org-init.el index cccf659..b8a41b8 100644 --- a/.emacs.d/site-lisp/org-init.el +++ b/.emacs.d/site-lisp/org-init.el @@ -39,7 +39,7 @@ '((agenda . " %i %-12:c%?-12t% s") (timeline . " % s") (todo . " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ") - (tags . " %i %-12:c") + (tags . " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ") (search . " %i %-12:c"))) (setq org-agenda-sorting-strategy '((agenda habit-down time-up priority-down category-keep) -- cgit v1.2.3-54-g00ecf From f7c35c3526a3f1b42c00ee9ebe2cdf083698ac71 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 4 Dec 2012 17:45:43 +0100 Subject: .emacs.d/site-lisp/org-init.el --- .emacs.d/site-lisp/org-init.el | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to '.emacs.d/site-lisp/org-init.el') diff --git a/.emacs.d/site-lisp/org-init.el b/.emacs.d/site-lisp/org-init.el index b8a41b8..3bacaad 100644 --- a/.emacs.d/site-lisp/org-init.el +++ b/.emacs.d/site-lisp/org-init.el @@ -50,22 +50,8 @@ (setq org-capture-templates '(("t" "Task" entry (file "~/documents/org/tasks") "* TODO %?") - ("h" "Habit" entry (file "") - (concat "* TODO %^{Description}\n" - " SCHEDULED: %^T\n" - " :PROPERTIES:\n" - " :STYLE: habit\n" - " :END:") - :immediate-finish t) - ("l" "Log" entry (file+headline "" "notes") - (concat "* %n %<%d-%m-%Y %H:%M:%S>\n" - " %a\n\n" - " %?") - :prepend t :empty-lines 1) - ("a" "Appointment" entry (file+headline "" "appointments") - "* %^{Description} %^T" :immediate-finish t) - ("b" "Bookmark" entry (file "~/documents/org/misc/bookmarks.org") - "* %c\n\n %:initial"))) + ("T" "Linked task" entry (file "~/documents/org/tasks") + "* TODO %?\n\n %a"))) (setq org-contacts-files '("~/documents/org/misc/contacts.org")) (setq org-directory (expand-file-name "~/documents/org")) (setq org-agenda-files -- cgit v1.2.3-54-g00ecf