summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index 62d8217..5ef77f7 100644 --- a/early-init.el +++ b/early-init.el
@@ -77,7 +77,7 @@
77 (left-fringe . 8) ; Width of fringes 77 (left-fringe . 8) ; Width of fringes
78 (right-fringe . 8) ; (8 is default) 78 (right-fringe . 8) ; (8 is default)
79 (font . ,(pcase acdw/system 79 (font . ,(pcase acdw/system
80 (:home "Terminus 12") 80 (:home "DejaVu Sans Mono 10")
81 (:work "Consolas 10")))) 81 (:work "Consolas 10"))))
82 frame-inhibit-implied-resize t ; Don't resize randomly 82 frame-inhibit-implied-resize t ; Don't resize randomly
83 frame-resize-pixelwise t ; Resize by pixels, not chars 83 frame-resize-pixelwise t ; Resize by pixels, not chars
@@ -160,3 +160,11 @@
160 gcs-done)) 160 gcs-done))
161 161
162(add-hook 'emacs-startup-hook #'hook--message-startup-time) 162(add-hook 'emacs-startup-hook #'hook--message-startup-time)
163
164;;; Install `no-littering', pointing both directories at `acdw/dir'. This will
165;;; take care of the packages I don't care about configuring.
166
167(straight-use-package 'no-littering)
168(setq no-littering-etc-directory acdw/dir
169 no-littering-var-directory acdw/dir)
170(require 'no-littering)