summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-21 16:40:25 -0600
committerCase Duckworth2022-01-21 16:40:25 -0600
commit2b99cc25d369f6192b78863fec450e55b9d15d4a (patch)
tree48316c06736945a772b457d4008ccbb41a3827a3 /early-init.el
parentMerge branch 'main' of tildegit.org:acdw/emacs (diff)
downloademacs-2b99cc25d369f6192b78863fec450e55b9d15d4a.tar.gz
emacs-2b99cc25d369f6192b78863fec450e55b9d15d4a.zip
Change system to machine
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/early-init.el b/early-init.el index c379934..2569602 100644 --- a/early-init.el +++ b/early-init.el
@@ -54,10 +54,10 @@ See `no-littering' for examples.")
54 "My Syncthing directory.") 54 "My Syncthing directory.")
55 55
56;; Load system-specific changes. 56;; Load system-specific changes.
57(progn (require 'system) 57;; (progn (require 'system)
58 (setq system-default-font "DejaVu Sans Mono" 58;; (setq system-default-font "DejaVu Sans Mono"
59 system-variable-pitch-font "DejaVu Sans") 59;; system-variable-pitch-font "DejaVu Sans")
60 (system-settings-load)) 60;; (system-settings-load))
61 61
62;;; Default frame settings 62;;; Default frame settings
63 63
@@ -77,11 +77,11 @@ See `no-littering' for examples.")
77(+with-ensure-after-init 77(+with-ensure-after-init
78 ;; Set default faces 78 ;; Set default faces
79 (+with-message "Setting default faces" 79 (+with-message "Setting default faces"
80 (let ((font-name system-default-font) 80 (let ((font-name machine-default-font)
81 (font-size system-default-height) 81 (font-size machine-default-height)
82 (variable-font-name system-variable-pitch-font) 82 (variable-font-name machine-variable-pitch-font)
83 (variable-font-size system-variable-pitch-height)) 83 (variable-font-size machine-variable-pitch-height))
84 (set-face-attribute 'default nil :family system-default-font 84 (set-face-attribute 'default nil :family font-name
85 :height font-size :weight 'book) 85 :height font-size :weight 'book)
86 (set-face-attribute 'italic nil :family font-name 86 (set-face-attribute 'italic nil :family font-name
87 :height font-size :slant 'italic) 87 :height font-size :slant 'italic)