diff options
author | Case Duckworth | 2022-02-01 15:06:16 -0600 |
---|---|---|
committer | Case Duckworth | 2022-02-01 15:06:16 -0600 |
commit | 27616fa08acd8b10598c47b3ec2c72d83b0f12e8 (patch) | |
tree | 28ba7497d502c9f3b577bc04977cdd754113dfc9 /machines/bob.el | |
parent | Parameterize +tab-bar-menu-bar-icon (diff) | |
download | emacs-27616fa08acd8b10598c47b3ec2c72d83b0f12e8.tar.gz emacs-27616fa08acd8b10598c47b3ec2c72d83b0f12e8.zip |
Change default fonts on bob
Diffstat (limited to 'machines/bob.el')
-rw-r--r-- | machines/bob.el | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/machines/bob.el b/machines/bob.el index e36ee47..4192291 100644 --- a/machines/bob.el +++ b/machines/bob.el | |||
@@ -6,10 +6,19 @@ | |||
6 | 6 | ||
7 | (require 'acdw) | 7 | (require 'acdw) |
8 | 8 | ||
9 | (+set-faces `((default :family "DejaVu Sans Mono" | 9 | ;; (+set-faces `((default :family "DejaVu Sans Mono" |
10 | :height 105) | 10 | ;; :height 105) |
11 | (fixed-pitch :inherit default) | 11 | ;; (fixed-pitch :inherit default) |
12 | (variable-pitch :family "DejaVu Sans" | 12 | ;; (variable-pitch :family "DejaVu Sans" |
13 | :height 1.1))) | 13 | ;; :height 1.1))) |
14 | |||
15 | ;; [[https://twitter.com/NPRougier/status/1488570192561160195][from Nic Rougier]] | ||
16 | (+set-faces | ||
17 | '((default :family "Roboto Mono" :weight light :height 110) | ||
18 | (bold :family "Roboto Mono" :weight regular) | ||
19 | (italic :family "Victor Mono" :weight semilight :slant italic))) | ||
20 | |||
21 | (set-fontset-font t 'unicode | ||
22 | (font-spec :name "Inconsolata Light" :size 10) nil) | ||
14 | 23 | ||
15 | ;;; bob.el ends here | 24 | ;;; bob.el ends here |