diff options
author | Thanos Apollo <[email protected]> | 2023-11-14 11:06:08 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-11-14 11:06:08 +0200 |
commit | cb1e58505af54fdce731c92e71a57cad7ca95b71 (patch) | |
tree | dbd0c6052471b74a56eb9b7e75f1860e5b9dce02 /.emacs.d/modules/thanos-books.el | |
parent | cfd49d56c675603133c32b88adbc724931ebc55a (diff) |
emacs:(books) Comment out font-setup
Changing fonts for nov-mode messes up formatting
Diffstat (limited to '.emacs.d/modules/thanos-books.el')
-rw-r--r-- | .emacs.d/modules/thanos-books.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.emacs.d/modules/thanos-books.el b/.emacs.d/modules/thanos-books.el index 2f845ff..7c6b414 100644 --- a/.emacs.d/modules/thanos-books.el +++ b/.emacs.d/modules/thanos-books.el @@ -42,15 +42,15 @@ (add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode)) -(defun thanos/nov-font-setup () - "Setup for nov." - (let ((font-size (if is-hermes 99 120))) - (face-remap-add-relative 'variable-pitch - :family "Jetbrains Mono" - :height font-size) - (beacon-mode -1))) - -(add-hook 'nov-mode-hook 'thanos/nov-font-setup) +;; (defun thanos/nov-font-setup () +;; "Setup for nov." +;; (let ((font-size (if is-hermes 99 120))) +;; (face-remap-add-relative 'variable-pitch +;; :family "Jetbrains Mono" +;; :height font-size) +;; (beacon-mode -1))) + +;; (add-hook 'nov-mode-hook 'thanos/nov-font-setup) (provide 'thanos-books) |