ENH update conf to reflect org-x-dag
This commit is contained in:
parent
7efe4c8074
commit
ccf1a007cb
26
etc/conf.org
26
etc/conf.org
|
@ -1823,7 +1823,9 @@ Additionally, using specialized file variables makes it much easier and faster t
|
||||||
org-x-reference-files (list "reference/idea.org" "reference/questions.org")
|
org-x-reference-files (list "reference/idea.org" "reference/questions.org")
|
||||||
org-x-endpoint-goal-file "reference/goals/endpoint.org"
|
org-x-endpoint-goal-file "reference/goals/endpoint.org"
|
||||||
org-x-lifetime-goal-file "reference/goals/lifetime.org"
|
org-x-lifetime-goal-file "reference/goals/lifetime.org"
|
||||||
|
org-x-survival-goal-file "reference/goals/survival.org"
|
||||||
org-x-daily-plan-file "plans/daily.org"
|
org-x-daily-plan-file "plans/daily.org"
|
||||||
|
org-x-weekly-plan-file "plans/weekly.org"
|
||||||
org-x-quarterly-plan-file "plans/quarterly.org"
|
org-x-quarterly-plan-file "plans/quarterly.org"
|
||||||
|
|
||||||
org-refile-targets '((org-x-get-action-files :maxlevel . 9)
|
org-refile-targets '((org-x-get-action-files :maxlevel . 9)
|
||||||
|
@ -1866,10 +1868,15 @@ My org config became so huge that I decided to move it all to a separate library
|
||||||
|
|
||||||
The advantage of doing it this way is that I can byte-compile and test independent of the other messy things in the main config. Furthermore, I can use it as a testing ground for new packages if I deem some functionality useful enough for more than just me.
|
The advantage of doing it this way is that I can byte-compile and test independent of the other messy things in the main config. Furthermore, I can use it as a testing ground for new packages if I deem some functionality useful enough for more than just me.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(let ((dir (nd/expand-lib-directory "org-x")))
|
(defun nd/load-and-compile (dir)
|
||||||
(add-to-list 'load-path dir)
|
(add-to-list 'load-path dir)
|
||||||
(--each (directory-files dir t ".*\\.el$") (byte-recompile-file it nil 0)))
|
(--each (directory-files dir t ".*\\.el$") (byte-recompile-file it nil 0)))
|
||||||
|
|
||||||
|
(nd/load-and-compile (nd/expand-lib-directory "either"))
|
||||||
|
(nd/load-and-compile (nd/expand-lib-directory "dag"))
|
||||||
|
(nd/load-and-compile (nd/expand-lib-directory "org-x"))
|
||||||
|
|
||||||
|
(require 'dag)
|
||||||
(require 'org-x)
|
(require 'org-x)
|
||||||
#+end_src
|
#+end_src
|
||||||
** buffer interface
|
** buffer interface
|
||||||
|
@ -2536,8 +2543,8 @@ NOTE: Capitalized entries store a link to the capture along with writing to the
|
||||||
:immediate-finish t)
|
:immediate-finish t)
|
||||||
|
|
||||||
("M" "metablock" entry (file+olp+datetree ,org-x-daily-plan-file)
|
("M" "metablock" entry (file+olp+datetree ,org-x-daily-plan-file)
|
||||||
,(concat "* %^{Metablock Title}\n"
|
,(concat "* %(eval org-x-kw-todo) %^{Metablock Title}\n"
|
||||||
"%^t\n"
|
"SCHEDULED: %^t\n"
|
||||||
"%^{Effort}p"
|
"%^{Effort}p"
|
||||||
"%?"))
|
"%?"))
|
||||||
|
|
||||||
|
@ -2575,7 +2582,9 @@ In some capture templates I want to automatically store a link to the entry so I
|
||||||
Add the creation time upon completing a capture.
|
Add the creation time upon completing a capture.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(add-hook 'org-capture-before-finalize-hook
|
(add-hook 'org-capture-before-finalize-hook
|
||||||
(lambda (&optional _always &rest _args) (org-x-set-creation-time)))
|
(lambda (&optional _always &rest _args)
|
||||||
|
(org-id-get-create)
|
||||||
|
(org-x-set-creation-time)))
|
||||||
#+end_src
|
#+end_src
|
||||||
*** refile
|
*** refile
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
@ -2687,7 +2696,9 @@ In these cases, it is nice to know what happened during each cycle, so force not
|
||||||
Override the standard headline insertion function to add a timestamp for the time at which it was created.
|
Override the standard headline insertion function to add a timestamp for the time at which it was created.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(advice-add 'org-insert-heading :after
|
(advice-add 'org-insert-heading :after
|
||||||
(lambda (&optional _always &rest _args) (org-x-set-creation-time)))
|
(lambda (&optional _always &rest _args)
|
||||||
|
(org-id-get-create)
|
||||||
|
(org-x-set-creation-time)))
|
||||||
#+end_src
|
#+end_src
|
||||||
*** agenda
|
*** agenda
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
@ -2750,11 +2761,6 @@ These are just some options to enable/disable some aesthetic things.
|
||||||
org-agenda-span 'day
|
org-agenda-span 'day
|
||||||
org-agenda-current-time-string "### -- NOW -- ###")
|
org-agenda-current-time-string "### -- NOW -- ###")
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Based on my screen size and usage patterns, this seems to be a good value to enable the maximum habit history to be shown without compromising aesthetics.
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(setq org-habit-graph-column 50)
|
|
||||||
#+END_SRC
|
|
||||||
**** bulk actions
|
**** bulk actions
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:ID: 7fefa0dc-70f2-4208-8f48-d10cab8b5bee
|
:ID: 7fefa0dc-70f2-4208-8f48-d10cab8b5bee
|
||||||
|
|
Loading…
Reference in New Issue