mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
5d814ae00d
Signed-off-by: magic_rb <magic_rb@redalder.org>
22 lines
623 B
Org Mode
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
|