:PROPERTIES: :header-args:emacs-lisp: :comments link :results none :ID: fe46ea35-8189-4000-b591-06ee0fdfdcde :END: #+title: Org Mixed Pitch #+filetags: emacs-load # SPDX-FileCopyrightText: 2022 Richard Brežák # # SPDX-License-Identifier: LGPL-3.0-or-later Enable ~org-mixed-pitch~, it makes ~org-mode~ feel like a proper writing instrument. Switched from ~org-variable-pitch~ as that seems to have broken at some point. #+BEGIN_SRC emacs-lisp (use-package mixed-pitch :straight t :config ; fix auto-loads (defun mixed-pitch ()) :hook (org-mode . mixed-pitch)) #+END_SRC