diff --git a/ha-aux-apps.org b/ha-aux-apps.org index 033502d..e1f552b 100644 --- a/ha-aux-apps.org +++ b/ha-aux-apps.org @@ -63,6 +63,11 @@ I would like a dedicate perspective to Mastodon, and I would like a leader key s "a m" '("mastodon" . mastodon-perspective))) #+end_src +Let’s turn on non-fixed-width fonts to make everything easier to read: +#+begin_src emacs-lisp + (use-package mastodon + :hook (mastodon-mode . variable-pitch-mode)) +#+end_src Starting the =mastodon= perspective, I set some initial windows: #+begin_src emacs-lisp (defun my-mastodon-start () @@ -143,6 +148,12 @@ I'm thinking the [[https://zevlg.github.io/telega.el/][Telega package]] would be (ha-leader "a t" 'telega)) #+end_src For some reason, you need [[https://github.com/Fanael/rainbow-identifiers][rainbow-identifiers]] to work, oh, I guess the docs state this. + +In the Telega chat’s, let’s turn on non-fixed-width fonts: +#+begin_src emacs-lisp + (use-package telega + :hook (telega-chat-mode . variable-pitch-mode)) +#+end_src * RPG DM Been working on my [[https://gitlab.com/howardabrams/emacs-rpgdm][RPG DM project]] for getting Emacs helping as a /Dungeon Master's Assistant/. The idea is to be able to roll dice and whatnot. What I find most useful is the [[https://gitlab.com/howardabrams/emacs-rpgdm/-/blob/main/rpgdm-tables.el][random tables]]. #+begin_src emacs-lisp diff --git a/ha-display.org b/ha-display.org index 180d9d4..318ed8c 100644 --- a/ha-display.org +++ b/ha-display.org @@ -252,7 +252,8 @@ I probably don't need to have such a ranking system, as chances are good I have (or (seq-first (seq-filter (lambda (font) (when (x-list-fonts font) font)) - '("Literata" ; Clean, readable with litagures + '("SN Pro" ; https://supernotes.app/open-source/sn-pro + "Literata" ; Clean, readable with litagures ;; Next best can be downloaded here: ;; https://fontesk.com/xcharter-typeface/ "XCharter" @@ -266,7 +267,7 @@ I probably don't need to have such a ranking system, as chances are good I have (or (seq-first (seq-filter (lambda (font) (when (x-list-fonts font) font)) - '("Overpass" "DejaVu Sans" + '("SN Pro" "Overpass" "DejaVu Sans" "Verdana" "Overpass" "Source Sans Pro" "Lucida Grande" diff --git a/ha-feed-reader.org b/ha-feed-reader.org index a48b640..addaef9 100644 --- a/ha-feed-reader.org +++ b/ha-feed-reader.org @@ -36,6 +36,7 @@ Let's get our feeds from a collection of org mode files. By default, Doom config ;; While not an elfeed-specific variable, this make reading articles ;; with images easier: (setq pixel-scroll-precision-mode t) + :general (:states 'normal :keymaps 'elfeed-show-mode-map "b" 'elfeed-show-visit @@ -57,6 +58,12 @@ Let's get our feeds from a collection of org mode files. By default, Doom config (elfeed-search-update)) #+end_src +Let’s turn on non-fixed-width fonts to make everything easier to read: +#+begin_src emacs-lisp :tangle no + (use-package elfeed + :hook (elfeed-show-mode . variable-pitch-mode)) +#+end_src + According to Ben Maughan and [[http://pragmaticemacs.com/emacs/to-eww-or-not-to-eww/][this Pragmatic Emacs essay]], we could easily browse an article in the GUI browser instead of EWW with capital B: #+begin_src emacs-lisp