dotfiles/emacs-lisp/org_mixed_pitch.org
magic_rb 5d814ae00d
Emacs mode mixed-pitch has broken auto-loads
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-02 21:47:23 +01:00

22 lines
623 B
Org Mode

: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 <richard@brezak.sk>
#
# 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