Update .config/fontconfig/conf.d/10-sans-serif.conf
Update .emacs.d/README.org
This commit is contained in:
parent
9bfa6c861d
commit
949e90f784
2 changed files with 7 additions and 3 deletions
|
@ -7,7 +7,6 @@
|
|||
<family>Noto Sans</family>
|
||||
<family>Noto Color Emoji</family>
|
||||
<family>Noto Emoji</family>
|
||||
<family>DejaVu Sans</family>
|
||||
</prefer>
|
||||
</alias>
|
||||
</fontconfig>
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue