diff --git a/ha-display.org b/ha-display.org index f13172d..0b69f14 100644 --- a/ha-display.org +++ b/ha-display.org @@ -214,7 +214,7 @@ Simple function that gives me the font information based on the size I need. Thi ;; fixed-pitch as my default fixed-pitched font. (custom-theme-set-faces 'user - `(variable-pitch ((t (:family ,ha-variable-font :slant normal :weight normal :height 1.1 :width normal)))) + `(variable-pitch ((t (:family ,ha-variable-font :slant normal :weight normal :height 1.3 :width normal)))) `(fixed-pitch ((t (:family ,ha-fixed-font :slant normal :weight normal :height 1.0 :width normal))))))) #+END_SRC @@ -224,7 +224,7 @@ Simple function that gives me the font information based on the size I need. Thi (defun ha-mac-monitor-fontsize () "Quickly set reset my font size when I connect my laptop to a monitor on a Mac." (interactive) - (ha-set-favorite-font-size 13)) + (ha-set-favorite-font-size 16)) (defun ha-linux-monitor-fontsize () "Quickly set reset my font size when I connect my laptop to a monitor on Linux." diff --git a/ha-org-word-processor.org b/ha-org-word-processor.org index 18cf065..e5a0846 100644 --- a/ha-org-word-processor.org +++ b/ha-org-word-processor.org @@ -109,6 +109,13 @@ Next, we just need to change the header sizes: (set-face-attribute 'org-level-3 nil :height 1.4 :inherit 'default) (set-face-attribute 'org-level-4 nil :height 1.1 :inherit 'default)) #+END_SRC + +While we are at it, let’s make sure the code blocks are using my fixed with font: +#+BEGIN_SRC emacs-lisp + (use-package mixed-pitch + :init (setq mixed-pitch-set-height t) + :hook (org-mode . mixed-pitch-mode)) +#+END_SRC * Superstar Now that headers are noticeable, I have no reason to see a number of asterisks. Once I used the [[https://github.com/sabof/org-bullets][org-bullets]] package, but believe we've replaced it with [[https://github.com/integral-dw/org-superstar-mode][org-superstar-mode]], so the following is an improvement, especially with the sub-bullets: