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

;;; Commentary:

;;; Code:

(require 'acdw)

;; (+set-faces `((default :family "DejaVu Sans Mono"
;;                        :height 105)
;;               (fixed-pitch :inherit default)
;;               (variable-pitch :family "DejaVu Sans"
;;                               :height 1.1)))

;; [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]]
(+set-faces
 '((default :family "Roboto Mono" :weight light :height 110)
   (bold :family "Roboto Mono" :weight regular)
   (italic :family "Victor Mono" :weight semilight :slant italic)))

(set-fontset-font t 'unicode
                  (font-spec :name "Inconsolata Light" :size 10) nil)

;;; bob.el ends here