Fix Mastodon repository references

This commit is contained in:
Howard Abrams 2023-03-12 21:25:23 -07:00
parent 7a67663f40
commit 12d7b0f68e
4 changed files with 6 additions and 3 deletions

View file

@ -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")

View file

@ -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= doesnt really work well with variable-width fonts, so lets 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

View file

@ -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
<<variables>>

View file

@ -95,9 +95,9 @@ cat > $HAMACS_DEST/init.el <<EOF
;; See the details in https://dev.to/jkreeftmeijer/emacs-package-management-with-straight-el-and-use-package-3oc8
;; Download and use the latest version of org:
(use-package org) ; We'll configure this in ernest later.
;; Download and use the latest version of org:
;; (use-package org) ; We'll configure this in ernest later.
;; Let's rock:
(org-babel-load-file "$HAMACS_DIR/bootstrap.org")