summary refs log tree commit diff stats
path: root/machines
diff options
context:
space:
mode:
authorCase Duckworth2022-02-06 22:15:17 -0600
committerCase Duckworth2022-02-06 22:15:17 -0600
commitf4e794e9b0cd7c013c1869a1e15e412d7956f206 (patch)
treee995f9283e8509bf94c5371e6ce87affb3198fa7 /machines
parentChange compat logic (diff)
downloademacs-f4e794e9b0cd7c013c1869a1e15e412d7956f206.tar.gz
emacs-f4e794e9b0cd7c013c1869a1e15e412d7956f206.zip
Change fonts
Diffstat (limited to 'machines')
-rw-r--r--machines/bob.el14
1 files changed, 6 insertions, 8 deletions
diff --git a/machines/bob.el b/machines/bob.el index 645ab7a..dd76abf 100644 --- a/machines/bob.el +++ b/machines/bob.el
@@ -9,13 +9,11 @@
9;; [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]] 9;; [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]]
10(add-function :after machine-after-load-theme 10(add-function :after machine-after-load-theme
11 (defun +bob-set-faces (&rest _) 11 (defun +bob-set-faces (&rest _)
12 (+set-faces 12 (let ((mono-face "Roboto Mono"))
13 '((default :family "Roboto Mono" :weight regular :height 110) 13 (+set-faces
14 (bold :family "Roboto Mono" :weight medium) 14 `((default :family ,mono-face :weight regular :height 110)
15 (italic :family "Victor Mono" :weight medium :slant italic))))) 15 (bold :family ,mono-face :weight medium)
16 16 (fixed-pitch :inherit default)
17(+with-ensure-after-init 17 (italic :family "Victor Mono" :weight medium :slant italic :height 1.1))))))
18 (set-fontset-font t 'unicode
19 (font-spec :name "Inconsolata Light" :size 10) nil))
20 18
21;;; bob.el ends here 19;;; bob.el ends here