summary refs log tree commit diff stats
path: root/machines
diff options
context:
space:
mode:
authorCase Duckworth2022-03-30 18:14:56 -0500
committerCase Duckworth2022-03-30 18:14:56 -0500
commit29c287a8c31bebe9dd40b499415511c96a1ef6fa (patch)
tree8c12bc6172b651839060da33ac4d6d2af3141534 /machines
parentUh (diff)
downloademacs-29c287a8c31bebe9dd40b499415511c96a1ef6fa.tar.gz
emacs-29c287a8c31bebe9dd40b499415511c96a1ef6fa.zip
I waited way too long to make this commit
Diffstat (limited to 'machines')
-rw-r--r--machines/bob.el34
1 files changed, 18 insertions, 16 deletions
diff --git a/machines/bob.el b/machines/bob.el index 3455c44..77034d2 100644 --- a/machines/bob.el +++ b/machines/bob.el
@@ -10,29 +10,31 @@
10;; Other ideas: [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]] 10;; Other ideas: [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]]
11(add-function :after machine-after-load-theme 11(add-function :after machine-after-load-theme
12 (defun +bob-set-faces (&rest _) 12 (defun +bob-set-faces (&rest _)
13 (let ((base-face "Roboto Mono") 13 (let ((base-face "IBM Plex Mono")
14 (base-size 105)
14 (italic-face nil) 15 (italic-face nil)
15 ;; (bold-face nil) 16 ;; (bold-face nil)
16 (mono-face nil) 17 (mono-face nil)
17 (var-face "Lato") 18 (var-face "IBM Plex Serif")
18 (base-size 110)) 19 (var-size 1.0))
19 (+set-faces 20 (+set-faces
20 `((default :family ,base-face 21 `((default
21 :weight regular 22 :family ,base-face
22 :height ,base-size) 23 :height ,base-size
24 :weight normal)
23 ;; (bold :family ,(or bold-face base-face) 25 ;; (bold :family ,(or bold-face base-face)
24 ;; :weight bold) 26 ;; :weight bold)
25 ;; (italic :family ,(or italic-face base-face) 27 (italic :family ,(or italic-face base-face)
26 ;; :weight medium 28 :weight normal
27 ;; :slant italic 29 :slant italic)
28 ;; :height ,base-size)
29 (fixed-pitch :family ,(or mono-face base-face) 30 (fixed-pitch :family ,(or mono-face base-face)
30 :weight regular
31 :height ,base-size) 31 :height ,base-size)
32 (variable-pitch :family ,(or var-face base-face) 32 (variable-pitch
33 :height 1.2) 33 :family ,(or var-face base-face)
34 (org-italic :family ,(or var-face base-face) 34 :height ,var-size)
35 :slant italic)))) 35 (org-italic
36 :family ,(or var-face base-face)
37 :slant italic))))
36 )) 38 ))
37 39
38;;; bob.el ends here 40;; bob.el ends here