diff options
Diffstat (limited to 'machines')
-rw-r--r-- | machines/bob.el | 14 |
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 |