From 949e90f7841ae964a0b997ee2388cb654ccdcb16 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Mon, 8 Jul 2024 00:37:22 +0200 Subject: [PATCH] Update .config/fontconfig/conf.d/10-sans-serif.conf Update .emacs.d/README.org --- dot_config/fontconfig/conf.d/10-sans-serif.conf | 1 - dot_emacs.d/README.org | 9 +++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/dot_config/fontconfig/conf.d/10-sans-serif.conf b/dot_config/fontconfig/conf.d/10-sans-serif.conf index 2e93ff1..22b72c8 100644 --- a/dot_config/fontconfig/conf.d/10-sans-serif.conf +++ b/dot_config/fontconfig/conf.d/10-sans-serif.conf @@ -7,7 +7,6 @@ Noto Sans Noto Color Emoji Noto Emoji - DejaVu Sans diff --git a/dot_emacs.d/README.org b/dot_emacs.d/README.org index 968a470..4c75cdb 100644 --- a/dot_emacs.d/README.org +++ b/dot_emacs.d/README.org @@ -129,8 +129,8 @@ Besides the font settings, I use the package fixed-pitch, which sets up hooks au 'user ;; global faces '(default ((t (:family "monospace" :height 125)))) - '(variable-pitch ((t (:family "sans-serif" :height 125)))) - '(fixed-pitch ((t (:inherit default)))) + '(variable-pitch ((t (:family "DejaVu Sans" :height 125)))) + '(fixed-pitch ((t (:family "monospace" :height 125)))) ;; org mode specific faces '(org-block ((t (:inherit fixed-pitch)))) '(org-code ((t (:inherit (shadow fixed-pitch))))) @@ -262,6 +262,11 @@ which-key is a nice little package that allows to have a minibuffer showing whic #+end_src * Org mode +#+begin_src emacs-lisp + (use-package org + :hook + (org-mode . variable-pitch-mode)) +#+end_src ** Pretty bullets and headlines I use org-superstar-mode, as it makes headlines and bullets look really nice.