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