summary refs log tree commit diff stats
path: root/machines
diff options
context:
space:
mode:
authorCase Duckworth2022-02-02 18:28:50 -0600
committerCase Duckworth2022-02-02 18:28:50 -0600
commit4178ff9c186865dc0eb4f5bf4b6b87400df03454 (patch)
treedbfc870cce06d54c2c4d9b5ee415984e43d78ee3 /machines
parentmore dwimmy (diff)
downloademacs-4178ff9c186865dc0eb4f5bf4b6b87400df03454.tar.gz
emacs-4178ff9c186865dc0eb4f5bf4b6b87400df03454.zip
Fonts
Diffstat (limited to 'machines')
-rw-r--r--machines/bob.el21
1 files changed, 9 insertions, 12 deletions
diff --git a/machines/bob.el b/machines/bob.el index 4192291..645ab7a 100644 --- a/machines/bob.el +++ b/machines/bob.el
@@ -6,19 +6,16 @@
6 6
7(require 'acdw) 7(require 'acdw)
8 8
9;; (+set-faces `((default :family "DejaVu Sans Mono"
10;; :height 105)
11;; (fixed-pitch :inherit default)
12;; (variable-pitch :family "DejaVu Sans"
13;; :height 1.1)))
14
15;; [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]] 9;; [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]]
16(+set-faces 10(add-function :after machine-after-load-theme
17 '((default :family "Roboto Mono" :weight light :height 110) 11 (defun +bob-set-faces (&rest _)
18 (bold :family "Roboto Mono" :weight regular) 12 (+set-faces
19 (italic :family "Victor Mono" :weight semilight :slant italic))) 13 '((default :family "Roboto Mono" :weight regular :height 110)
14 (bold :family "Roboto Mono" :weight medium)
15 (italic :family "Victor Mono" :weight medium :slant italic)))))
20 16
21(set-fontset-font t 'unicode 17(+with-ensure-after-init
22 (font-spec :name "Inconsolata Light" :size 10) nil) 18 (set-fontset-font t 'unicode
19 (font-spec :name "Inconsolata Light" :size 10) nil))
23 20
24;;; bob.el ends here 21;;; bob.el ends here