diff --git a/early-init.el b/early-init.el index d84525d..1683e54 100644 --- a/early-init.el +++ b/early-init.el @@ -21,6 +21,11 @@ ;;; Code: +;; Message when loading a library. This is the only place I'm going to use a +;; `defadvice', and only because it's cleaner than defining a nonce function. +(defadvice load (before debug-log activate) + (message "Now loading: '%s'" (ad-get-arg 0))) + (push (locate-user-emacs-file "lisp") load-path) (add-to-list 'load-path (locate-user-emacs-file "lisp/compat") :append) @@ -49,7 +54,7 @@ See `no-littering' for examples.") ;; Fonts (let ((font-name "Go Mono") - (font-size 108) + (font-size 105) (variable-font-name "Go") (variable-font-size 1.0)) (set-face-attribute 'default nil :family font-name