summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2020-10-27 13:43:22 -0500
committerCase Duckworth2020-10-27 13:43:22 -0500
commit97c82c873b3de40f4b08d60d87a18558c1b907e9 (patch)
treeed7a481205d1c188812ec0838980dd5be9ded53c
parentAdd links (diff)
downloademacs-97c82c873b3de40f4b08d60d87a18558c1b907e9.tar.gz
emacs-97c82c873b3de40f4b08d60d87a18558c1b907e9.zip
Add mixed-pitch package
-rw-r--r--config.org10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.org b/config.org index 9b9c41a..fc135a7 100644 --- a/config.org +++ b/config.org
@@ -585,6 +585,12 @@ I was using company, but I think it might've been causing issues with ~awk-mode~
585 :hook 585 :hook
586 (org-mode . visual-fill-column-mode)) 586 (org-mode . visual-fill-column-mode))
587#+end_src 587#+end_src
588** Mixed-pitch
589#+begin_src emacs-lisp
590 (use-package mixed-pitch
591 :hook
592 (text-mode . mixed-pitch-mode))
593#+end_src
588** Org mode 594** Org mode
589#+begin_src emacs-lisp 595#+begin_src emacs-lisp
590 (use-package org 596 (use-package org
@@ -594,9 +600,7 @@ I was using company, but I think it might've been causing issues with ~awk-mode~
594 (org-hide-emphasis-markers t) 600 (org-hide-emphasis-markers t)
595 (org-fontify-done-headline t) 601 (org-fontify-done-headline t)
596 (org-hide-leading-stars t) 602 (org-hide-leading-stars t)
597 (org-pretty-entities t) 603 (org-pretty-entities t))
598 :hook
599 (org-mode . variable-pitch-mode))
600 604
601 (use-package org-superstar 605 (use-package org-superstar
602 :hook 606 :hook