summary refs log tree commit diff stats
path: root/machines/bob.el
blob: 5effc5b7521931618bd0a094f59d6ff9204a2815 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;;; bob.el --- Customizations for "bob" -*- lexical-binding: t; -*-

;;; Commentary:

;;; Code:

(require 'acdw)
(require 'machine)

(defun +bob-set-faces (&rest _)
  (let (;;(base-face "IBM Plex Mono")
        ;; (var-face "IBM Plex Sans")
        ;; (base-face "Iosevka Comfy Wide")
        ;; (var-face "Iosevka Comfy Duo")
        (base-face "DejaVu Sans Mono")
        (var-face "DejaVu Sans")
        (base-size 100)
        (var-size 1.0)
        (italic-face nil)
        ;; (bold-face nil)
        (mono-face nil))
    (+set-faces
     `((default
         :family ,base-face
         :height ,base-size
         :weight regular)
       (bold :family ,(or (bound-and-true-p bold-face) base-face)
             :weight extra-bold)
       (italic :family ,(or (bound-and-true-p italic-face) base-face)
               :weight normal
               :slant italic)
       (fixed-pitch :family ,(or (bound-and-true-p mono-face) base-face)
                    :height 1.0)
       (variable-pitch
        :family ,(or var-face base-face)
        :height ,var-size)
       ;; (org-italic
       ;;  :family ,(or var-face base-face)
       ;;  :slant italic)
       ))))

;; Other ideas: [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]]
(add-hook 'machine-after-load-theme-hook #'+bob-set-faces)

;; bob.el ends here (+bob-set-faces)