diff options
author | Case Duckworth | 2020-11-03 22:00:57 -0600 |
---|---|---|
committer | Case Duckworth | 2020-11-03 22:00:57 -0600 |
commit | c3edc2611757a5a6b8eba65ca5d2e755d102801e (patch) | |
tree | a2f48fc31d6b838674ceccc702b3a422ebd3315d | |
parent | Add advice for elpher:eww-browse-url (diff) | |
download | emacs-c3edc2611757a5a6b8eba65ca5d2e755d102801e.tar.gz emacs-c3edc2611757a5a6b8eba65ca5d2e755d102801e.zip |
Change fonts
-rw-r--r-- | config.org | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/config.org b/config.org index 8d0b7b3..b5591e7 100644 --- a/config.org +++ b/config.org | |||
@@ -345,7 +345,7 @@ I'm sure there's a better way to do this, but for now, this is the best I've got | |||
345 | ("helv" "helvetica" "arial" "fixed") | 345 | ("helv" "helvetica" "arial" "fixed") |
346 | ;; now mine | 346 | ;; now mine |
347 | ("FixedPitch" "Go Mono" "DejaVu Sans Mono" "Consolas" "fixed") | 347 | ("FixedPitch" "Go Mono" "DejaVu Sans Mono" "Consolas" "fixed") |
348 | ("VariablePitch" "Go" "DejaVu Sans" "Georgia" "fixed"))) | 348 | ("VariablePitch" "Spectral Medium" "Go" "DejaVu Sans" "Georgia" "fixed"))) |
349 | 349 | ||
350 | (set-face-attribute 'default nil | 350 | (set-face-attribute 'default nil |
351 | :family "FixedPitch" | 351 | :family "FixedPitch" |
@@ -357,7 +357,7 @@ I'm sure there's a better way to do this, but for now, this is the best I've got | |||
357 | 357 | ||
358 | (set-face-attribute 'variable-pitch nil | 358 | (set-face-attribute 'variable-pitch nil |
359 | :family "VariablePitch" | 359 | :family "VariablePitch" |
360 | :height 130) | 360 | :height 135) |
361 | #+END_SRC | 361 | #+END_SRC |
362 | *** Ligatures | 362 | *** Ligatures |
363 | These cause big problems with cc-mode (as in, totally freezing everything), so I'm going to comment it out. | 363 | These cause big problems with cc-mode (as in, totally freezing everything), so I'm going to comment it out. |
@@ -649,12 +649,6 @@ I was using company, but I think it might've been causing issues with ~awk-mode~ | |||
649 | :hook | 649 | :hook |
650 | (org-mode . visual-fill-column-mode)) | 650 | (org-mode . visual-fill-column-mode)) |
651 | #+end_src | 651 | #+end_src |
652 | ** Mixed-pitch | ||
653 | #+begin_src emacs-lisp | ||
654 | (use-package mixed-pitch | ||
655 | :hook | ||
656 | (text-mode . mixed-pitch-mode)) | ||
657 | #+end_src | ||
658 | ** Org mode | 652 | ** Org mode |
659 | #+begin_src emacs-lisp | 653 | #+begin_src emacs-lisp |
660 | (use-package org | 654 | (use-package org |
@@ -665,7 +659,9 @@ I was using company, but I think it might've been causing issues with ~awk-mode~ | |||
665 | (org-fontify-done-headline t) | 659 | (org-fontify-done-headline t) |
666 | (org-hide-leading-stars t) | 660 | (org-hide-leading-stars t) |
667 | (org-pretty-entities t) | 661 | (org-pretty-entities t) |
668 | (org-src-window-setup 'current-window)) | 662 | (org-src-window-setup 'current-window) |
663 | :hook | ||
664 | (org-mode . variable-pitch-mode)) | ||
669 | 665 | ||
670 | (use-package org-superstar | 666 | (use-package org-superstar |
671 | :hook | 667 | :hook |