mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
640de3fb86
This reverts commit b673fb12c1
.
21 lines
579 B
Org Mode
21 lines
579 B
Org Mode
:PROPERTIES:
|
|
:ID: 3e36a34a-7038-4466-847a-e4023f1f4827
|
|
:END:
|
|
#+title: Org Variable Pitch
|
|
#+filetags: emacs-load
|
|
|
|
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
Enable ~org-variable-pitch~, it makes ~org-mode~ feel like a proper writing instrument.
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
(use-package org-variable-pitch
|
|
:straight t
|
|
:config
|
|
(set-face-attribute 'org-variable-pitch-fixed-face nil
|
|
:inherit 'variable-pitch)
|
|
:hook (org-mode . org-variable-pitch--enable))
|
|
#+END_SRC
|