Compare commits

...

2 Commits

Author SHA1 Message Date
Collin J. Doering 45617d0b4f
emacs-configuration: Correct typo and adjust a comment
* user-config/emacs/.emacs.d/config.org: use-package :hooks must take alists
2024-04-18 12:26:18 -04:00
Collin J. Doering 73142ca1b3
emacs-configuration: Resolve bug - config.el not generating
* user-config/emacs/.emacs.d/config.org: It was discovered that ~/.emacs.d/config.org was no
longer being tangled correctly. It looks like including a elisp block causes this, but its
not clear why (but likely due to changes in the org-mode version being used). It now works as
expected. That is: When new changes are made to ~/.emacs.d/config.org, these make it into
~/.emacs.d/config.el~ during the next run of emacs. This is definitely the case when
~/.emacs.d/config.org is a plain file, but has not yet been explicitly verified for symlinks.
2024-04-18 12:23:02 -04:00
1 changed files with 3 additions and 3 deletions

View File

@ -1452,7 +1452,7 @@ settings can likely be replaced by the [[https://github.com/hrs/sensible-default
Enable some commands that are by default disabled.
#+begin_src elisp
#+begin_src emacs-lisp
(put 'set-goal-column 'disabled nil)
(put 'upcase-region 'disabled nil)
#+end_src
@ -2018,7 +2018,7 @@ Use [[http://gnuplot.sourceforge.net/][gnuplot]] alongside org-mode to generate
(org-expiry-insinuate)
(setq org-expiry-inactive-timestamps t))
:after org
:hook ((org-capture-mode-hook org-expiry-insert-created)))
:hook ((org-capture-mode-hook . org-expiry-insert-created)))
#+end_src
#+begin_src emacs-lisp
@ -2309,7 +2309,7 @@ via the customize variable ~org-roam-encrypt-files~.
:todo "WAIT")
(:auto-category t))
; This will be supported in 1.3:
; This was supposed to be supported in 1.3; but was push to a unspecified future release
; :org-super-agenda-hide-empty-groups
org-agenda-custom-commands (append
org-agenda-custom-commands