summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-16 09:30:40 -0500
committerCase Duckworth2021-03-16 09:30:40 -0500
commitf17f0a6629c718a2433267ca898fe16d6e0ae868 (patch)
treef50ccbcab88dd1572977cb053c8e7b4b2870133a /early-init.el
parent"Package-ize" dired (diff)
parentInstall `no-littering' (diff)
downloademacs-f17f0a6629c718a2433267ca898fe16d6e0ae868.tar.gz
emacs-f17f0a6629c718a2433267ca898fe16d6e0ae868.zip
Merge branch 'main' of https://tildegit.org/acdw/emacs into 5c
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)