adding org dev pieces

This commit is contained in:
Chris Cochrun 2022-04-12 10:24:06 -05:00
parent dab319bbf8
commit d9ebe130da
2 changed files with 34 additions and 4 deletions

View file

@ -1644,7 +1644,9 @@ Part of this config includes some special capture templates for my work as a you
(setq org-agenda-category-icon-alist
'(("todo" "~/org/icons/task.png" nil nil :ascent center)
("lesson" "~/org/icons/book.png" nil nil :ascent center)))
("lesson" "~/org/icons/book.png" nil nil :ascent center)
("dev" "~/org/icons/coding.png" nil nil :ascent center)
("TODO" "~/org/icons/coding.png" nil nil :ascent center)))
(setq org-imenu-depth 4
org-odt-styles-file "/home/chris/org/style.odt"
@ -1795,6 +1797,9 @@ Super Agenda gives me a really nice way of making the agenda view look a lot bet
:deadline today)
(:name "Important"
:priority "A")
(:name "Development"
:category "TODO"
:category "dev")
(:name "Overdue"
:time-grid t
:scheduled past
@ -1802,7 +1807,7 @@ Super Agenda gives me a really nice way of making the agenda view look a lot bet
(:name "Due soon"
:deadline future)))
:config
(org-super-agenda-mode)
(org-super-agenda-mode +1)
(setq org-super-agenda-header-map nil))
#+end_src