Skip to content

Instantly share code, notes, and snippets.

@jeffbowman
Created February 17, 2022 17:13
Show Gist options
  • Save jeffbowman/7d0e20df9321aaa28468c2a32503d322 to your computer and use it in GitHub Desktop.
Save jeffbowman/7d0e20df9321aaa28468c2a32503d322 to your computer and use it in GitHub Desktop.
early-config.el example
;; Early init customizations for rational emacs
;; Set the default font face before displaying the frame to avoid
;; resize issues.
(custom-set-faces (backquote (default ((t (:family "Anonymous Pro" :height 180))))))
;; remove default fore/background colors so theme values loaded in
;; config.el take effect
(setf default-frame-alist (assq-delete-all 'background-color default-frame-alist))
(setf default-frame-alist (assq-delete-all 'foreground-color default-frame-alist))
(provide 'early-config)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment