diff --git a/ha-aux-apps.org b/ha-aux-apps.org index c1f186f..2d19ba7 100644 --- a/ha-aux-apps.org +++ b/ha-aux-apps.org @@ -41,7 +41,7 @@ The venerable [[https://github.com/hayamiz/twittering-mode/tree/master][twitteri Glad to see the 2FA feature is working on the [[https://codeberg.org/martianh/mastodon.el][mastodon.el]] project, and even more glad to see the great birdland diaspora arrive in the land of the toots. #+begin_src emacs-lisp (use-package mastodon - :straight (:repo "https://codeberg.org/martianh/mastodon.el") + :straight (:host codeberg :repo "martianh/mastodon.el") :init (setq mastodon-instance-url "https://emacs.ch" mastodon-active-user "howard") diff --git a/ha-org-word-processor.org b/ha-org-word-processor.org index 3ec742e..b8f6d75 100644 --- a/ha-org-word-processor.org +++ b/ha-org-word-processor.org @@ -48,6 +48,7 @@ Oh, and as I indent lists, they should change the /bulleting/ in a particular se The =org-indent-indentation-per-level=, which defaults to =2= doesn’t really work well with variable-width fonts, so let’s make the spaces at the beginning of the line fixed: #+begin_src emacs-lisp (use-package org + :straight (:type built-in) :custom-face (org-indent ((t (:inherit fixed-pitch))))) #+end_src ** Typographic Quotes @@ -235,6 +236,7 @@ And decrease the prominence of the property drawers: This process allows us to use =variable-pitch= mode for all org documents. #+begin_src emacs-lisp (use-package org + :straight (:type built-in) :hook (org-mode . variable-pitch-mode)) #+end_src * Org Modern diff --git a/ha-org.org b/ha-org.org index b4751a1..54ca159 100644 --- a/ha-org.org +++ b/ha-org.org @@ -28,6 +28,7 @@ A literate programming file for configuring org-mode and those files. Org is a /large/ complex beast with a gazillion settings, so I discuss these later in this document. #+begin_src emacs-lisp (use-package org + :straight (:type built-in) :mode ("\\.org" . org-mode) ; Addresses an odd warning :init <> diff --git a/initialize b/initialize index d0c4fda..40f95b0 100755 --- a/initialize +++ b/initialize @@ -95,9 +95,9 @@ cat > $HAMACS_DEST/init.el <