adding org dev pieces
This commit is contained in:
parent
dab319bbf8
commit
d9ebe130da
|
@ -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
|
(setq org-agenda-category-icon-alist
|
||||||
'(("todo" "~/org/icons/task.png" nil nil :ascent center)
|
'(("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
|
(setq org-imenu-depth 4
|
||||||
org-odt-styles-file "/home/chris/org/style.odt"
|
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)
|
:deadline today)
|
||||||
(:name "Important"
|
(:name "Important"
|
||||||
:priority "A")
|
:priority "A")
|
||||||
|
(:name "Development"
|
||||||
|
:category "TODO"
|
||||||
|
:category "dev")
|
||||||
(:name "Overdue"
|
(:name "Overdue"
|
||||||
:time-grid t
|
:time-grid t
|
||||||
:scheduled past
|
: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"
|
(:name "Due soon"
|
||||||
:deadline future)))
|
:deadline future)))
|
||||||
:config
|
:config
|
||||||
(org-super-agenda-mode)
|
(org-super-agenda-mode +1)
|
||||||
(setq org-super-agenda-header-map nil))
|
(setq org-super-agenda-header-map nil))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
29
init.el
29
init.el
|
@ -1037,7 +1037,9 @@ targets."
|
||||||
|
|
||||||
(setq org-agenda-category-icon-alist
|
(setq org-agenda-category-icon-alist
|
||||||
'(("todo" "~/org/icons/task.png" nil nil :ascent center)
|
'(("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
|
(setq org-imenu-depth 4
|
||||||
org-odt-styles-file "/home/chris/org/style.odt"
|
org-odt-styles-file "/home/chris/org/style.odt"
|
||||||
|
@ -1171,6 +1173,9 @@ targets."
|
||||||
:deadline today)
|
:deadline today)
|
||||||
(:name "Important"
|
(:name "Important"
|
||||||
:priority "A")
|
:priority "A")
|
||||||
|
(:name "Development"
|
||||||
|
:category "TODO"
|
||||||
|
:category "dev")
|
||||||
(:name "Overdue"
|
(:name "Overdue"
|
||||||
:time-grid t
|
:time-grid t
|
||||||
:scheduled past
|
:scheduled past
|
||||||
|
@ -1178,7 +1183,7 @@ targets."
|
||||||
(:name "Due soon"
|
(:name "Due soon"
|
||||||
:deadline future)))
|
:deadline future)))
|
||||||
:config
|
:config
|
||||||
(org-super-agenda-mode)
|
(org-super-agenda-mode +1)
|
||||||
(setq org-super-agenda-header-map nil))
|
(setq org-super-agenda-header-map nil))
|
||||||
|
|
||||||
(use-package org-roam
|
(use-package org-roam
|
||||||
|
@ -2092,3 +2097,23 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
gcmh-verbose nil))
|
gcmh-verbose nil))
|
||||||
|
|
||||||
(setq warning-suppress-types '((comp)))
|
(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)
|
||||||
|
|
Loading…
Reference in a new issue