straight/org fixup

This commit is contained in:
2025-03-18 10:12:10 -04:00
parent 3f9a4859a9
commit db7573be44
2 changed files with 26 additions and 2 deletions

View File

@@ -14,7 +14,7 @@
Package management to be a little more fien/precise and work outside
of Nix (as much as it would be nice to work inside of Nix too)
#+begin_src elisp :tangle yes :exports code
#+begin_src elisp :tangle no :exports code
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name
@@ -32,6 +32,9 @@ of Nix (as much as it would be nice to work inside of Nix too)
(load bootstrap-file nil 'nomessage))
#+end_src
This code block actually resides in init.el (so that we can perform
some necessary pre-configuration)
** Leaf.el
We must initialize =leaf.el=, which we use as a use-package
@@ -400,8 +403,11 @@ For using clojure, we use both [[https://github.com/clojure-emacs/clojure-mode][
We ensure that org is available (though it is builtin)
For Version compatibility we actually install org in init.el (to not
conflict with the builtin version of Org)
#+begin_src elisp :tangle yes :exports code
(leaf org :ensure t
(leaf org
:require t org-tempo
:hook
(org-mode-hook . auto-fill-mode)