summary refs log tree commit diff stats
path: root/machines/bob.el
blob: e9cb8eca29b13a07a33c39cd041e17449104dd2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; bob.el --- Customizations for "bob" -*- lexical-binding: t; -*-

;;; Commentary:

;;; Code:

(require 'acdw)

;; [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]]
(add-function :after machine-after-load-theme
              (defun +bob-set-faces (&rest _)
                (let ((mono-face "Roboto Mono"))
                  (+set-faces
                   `((default :family ,mono-face :weight regular :height 110)
                     (bold :family ,mono-face :weight medium)
                     (fixed-pitch :inherit default)
                     (italic :family "Victor Mono" :weight medium :slant italic :height 1.05)
                     (variable-pitch :family "Open Sans" :height 1.1))))))

;;; bob.el ends here