blob: 83952928b486c5911ac4472639a96afce389da31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
;;; rul-fonts.el --- Fonts configuration
(use-package fontaine
:ensure t
:config
(setq fontaine-presets
'((tiny
:default-height 100)
(small
:default-height 120)
(medium
:default-height 140)
(large
:default-weight semilight
:default-height 180
:bold-weight extrabold)
(presentation
:default-weight semilight
:default-height 200
:bold-weight extrabold)
(jumbo
:default-weight semilight
:default-height 230
:bold-weight extrabold)
(t
:default-family "Iosevka"
:default-weight regular
:default-height 140
:variable-pitch-family "Iosevka Aile")))
;; Set desired style from `fontaine-presets'
(fontaine-set-preset 'medium))
(provide 'rul-fonts)
|