diff --git a/README.org b/README.org index eef79138..60000366 100644 --- a/README.org +++ b/README.org @@ -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 diff --git a/init.el b/init.el index 6f349e91..6720cacf 100644 --- a/init.el +++ b/init.el @@ -1037,7 +1037,9 @@ targets." (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" @@ -1171,6 +1173,9 @@ targets." :deadline today) (:name "Important" :priority "A") + (:name "Development" + :category "TODO" + :category "dev") (:name "Overdue" :time-grid t :scheduled past @@ -1178,7 +1183,7 @@ targets." (:name "Due soon" :deadline future))) :config - (org-super-agenda-mode) + (org-super-agenda-mode +1) (setq org-super-agenda-header-map nil)) (use-package org-roam @@ -2092,3 +2097,23 @@ interfere with the default `bongo-playlist-buffer'." gcmh-verbose nil)) (setq warning-suppress-types '((comp))) +<<<<<<< HEAD +======= +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(pdf-misc-print-program "/usr/bin/lpr" t) + '(pdf-misc-print-program-args '("-o media=Letter" "-o fitplot") t) + '(safe-local-variable-values + '((aggressive-indent-mode) + (projectile-project-run-cmd . "./build/bin/presenter") + (projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make --dir build/")))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) +>>>>>>> 77b1d0c4 (adding org dev pieces)