summary refs log tree commit diff stats
path: root/machines/bob.el
blob: 645ab7a4ea1b3c0cb18f6d21d0dbf6eea6708883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; 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 _)
                       (+set-faces
                        '((default :family "Roboto Mono" :weight regular :height 110)
                          (bold :family "Roboto Mono" :weight medium)
                          (italic :family "Victor Mono" :weight medium :slant italic)))))

(+with-ensure-after-init
  (set-fontset-font t 'unicode
                    (font-spec :name "Inconsolata Light" :size 10) nil))

;;; bob.el ends here