diff options
author | Case Duckworth | 2022-03-30 18:16:40 -0500 |
---|---|---|
committer | Case Duckworth | 2022-03-30 18:16:40 -0500 |
commit | 173dd60dca858c0f5d54550d2b59af83335d54aa (patch) | |
tree | 21ab5c2030feda8db40839e4bad7fe6abddf0c3a /machines | |
parent | I waited way too long to make this commit (diff) | |
parent | Merge branch 'main' of https://tildegit.org/acdw/emacs (diff) | |
download | emacs-173dd60dca858c0f5d54550d2b59af83335d54aa.tar.gz emacs-173dd60dca858c0f5d54550d2b59af83335d54aa.zip |
Merge branch 'main' of tildegit.org:acdw/emacs
Diffstat (limited to 'machines')
-rw-r--r-- | machines/larry.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/machines/larry.el b/machines/larry.el new file mode 100644 index 0000000..ba4edb2 --- /dev/null +++ b/machines/larry.el | |||
@@ -0,0 +1,13 @@ | |||
1 | ;;; larry.el --- Customizations for "larry" -*- lexical-binding: t; -*- | ||
2 | |||
3 | ;;; Code: | ||
4 | |||
5 | (require 'acdw) | ||
6 | (require 'machine) | ||
7 | |||
8 | (add-function :after machine-after-load-theme | ||
9 | (defun +larry-set-faces (&rest _) | ||
10 | (+set-faces | ||
11 | `((default :family "DejaVu Sans Mono") | ||
12 | (fixed-pitch :family "DejaVu Sans Mono") | ||
13 | (variable-pitch :family "DejaVu Sans"))))) | ||