tweaks to denote

This commit is contained in:
Chris Cochrun 2023-12-19 09:56:51 -06:00
parent a6cecb8599
commit 689ad7dde1
2 changed files with 23 additions and 19 deletions

View file

@ -919,7 +919,7 @@ Part of this config includes some special capture templates for my work as a you
(setq org-capture-templates
'(("t" "Personal todo" entry
(file "todo/todo.org")
(file "~/docs/todo/todo.org")
(file ".templates/tasks.org") :prepend t)
("n" "Personal notes" entry
(file "todo/notes.org")
@ -961,10 +961,10 @@ Part of this config includes some special capture templates for my work as a you
(search . " %i %-12:c")))
(setq org-agenda-category-icon-alist
'(("todo" "~/docs/icons/task.png" nil nil :ascent center)
("lesson" "~/docs/icons/book.png" nil nil :ascent center)
("dev" "~/docs/icons/coding.png" nil nil :ascent center)
("TODO" "~/docs/icons/coding.png" nil nil :ascent center)))
'(("todo" "~/docs/notes/icons/task.png" nil nil :ascent center)
("lesson" "~/docs/notes/icons/book.png" nil nil :ascent center)
("dev" "~/docs/notes/icons/coding.png" nil nil :ascent center)
("TODO" "~/docs/notes/icons/coding.png" nil nil :ascent center)))
(setq org-imenu-depth 4
org-odt-styles-file "/home/chris/docs/style.odt"
@ -975,7 +975,7 @@ Part of this config includes some special capture templates for my work as a you
'((sequence "TODO(t)" "PROJ(p)" "STRT(s)" "WAIT(w)" "HOLD(h)" "|" "DONE(d)" "CNCL(c)")
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)"))
org-agenda-files
'("~/docs/notes/todo/todo.org"
'("~/docs/todo/todo.org"
"~/docs/notes/nvtfc_social_media.org"
"~/dev/lumina/TODO.org"
"~/dev/tfcconnection/TODO.org"
@ -1141,7 +1141,8 @@ Part of this config includes some special capture templates for my work as a you
"gl" 'org-id-copy
"gk" 'languagetool-correct-at-point
"C-M-k" 'org-priority-up
"C-M-j" 'org-priority-down)
"C-M-j" 'org-priority-down
"gs" 'org-time-stamp)
('visual org-mode-map
"gf" 'org-footnote-action
"gm" 'org-emphasize)
@ -1392,10 +1393,11 @@ I might try switching to and using denote instead of Org Roam. Denote doesn't us
(setq denote-org-front-matter
"#+TITLE: %1$s
,#+AUTHOR: Chris Cochrun
,#+CREATED: %2$s
,#+filetags: %3$s
,#+identifier: %4$s")
#+AUTHOR: Chris Cochrun
#+CREATED: %2$s
#+filetags: %3$s
#+identifier: %4$s
")
:general
(chris/leader-keys
:states 'normal

18
init.el
View file

@ -610,7 +610,7 @@ much faster. The hope is to also make this a faster version of imenu."
(setq org-capture-templates
'(("t" "Personal todo" entry
(file "todo/todo.org")
(file "~/docs/todo/todo.org")
(file ".templates/tasks.org") :prepend t)
("n" "Personal notes" entry
(file "todo/notes.org")
@ -652,10 +652,10 @@ much faster. The hope is to also make this a faster version of imenu."
(search . " %i %-12:c")))
(setq org-agenda-category-icon-alist
'(("todo" "~/docs/icons/task.png" nil nil :ascent center)
("lesson" "~/docs/icons/book.png" nil nil :ascent center)
("dev" "~/docs/icons/coding.png" nil nil :ascent center)
("TODO" "~/docs/icons/coding.png" nil nil :ascent center)))
'(("todo" "~/docs/notes/icons/task.png" nil nil :ascent center)
("lesson" "~/docs/notes/icons/book.png" nil nil :ascent center)
("dev" "~/docs/notes/icons/coding.png" nil nil :ascent center)
("TODO" "~/docs/notes/icons/coding.png" nil nil :ascent center)))
(setq org-imenu-depth 4
org-odt-styles-file "/home/chris/docs/style.odt"
@ -666,7 +666,7 @@ much faster. The hope is to also make this a faster version of imenu."
'((sequence "TODO(t)" "PROJ(p)" "STRT(s)" "WAIT(w)" "HOLD(h)" "|" "DONE(d)" "CNCL(c)")
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)"))
org-agenda-files
'("~/docs/notes/todo/todo.org"
'("~/docs/todo/todo.org"
"~/docs/notes/nvtfc_social_media.org"
"~/dev/lumina/TODO.org"
"~/dev/tfcconnection/TODO.org"
@ -832,7 +832,8 @@ much faster. The hope is to also make this a faster version of imenu."
"gl" 'org-id-copy
"gk" 'languagetool-correct-at-point
"C-M-k" 'org-priority-up
"C-M-j" 'org-priority-down)
"C-M-j" 'org-priority-down
"gs" 'org-time-stamp)
('visual org-mode-map
"gf" 'org-footnote-action
"gm" 'org-emphasize)
@ -1049,7 +1050,8 @@ much faster. The hope is to also make this a faster version of imenu."
#+AUTHOR: Chris Cochrun
#+CREATED: %2$s
#+filetags: %3$s
#+identifier: %4$s")
#+identifier: %4$s
")
:general
(chris/leader-keys
:states 'normal