dotfiles/common/.config/emacs/early-init.el.org
2025-03-26 13:48:31 -05:00

1.3 KiB

Emacs Early Initialization

Disable package.el at startup so that elpaca can enable it on its own.

  (setq package-enable-at-startup nil)

Force the use of a custom.el file instead of appending to init.el.

  (setq custom-file (concat user-emacs-directory "custom.el"))
  (when (file-exists-p custom-file)
    (load custom-file))

Disable the default startup screen so Emacs starts in the scratch buffer and also defaults to an empty scratch buffer.

  (setq inhibit-startup-screen t
        initial-scratch-message nil)

Clean up interface by removing unnecessary elements.

  (add-to-list 'default-frame-alist '(vertical-scroll-bars . nil))
  (push '(tool-bar-lines . 0) default-frame-alist)
  (menu-bar-mode -1)
  (setq frame-resize-pixelwise t)

Set up fonts. I use Source Code Pro (Nerd Font) for monospace and Computer Modern for variable width.

  (defvar jj/mono-font "Atkinson Hyperlegible Mono-14:weight=thin")
  (defvar jj/var-font "Atkinson Hyperlegible Next-14")
  (add-to-list 'default-frame-alist
               `(font . ,jj/mono-font))
  (custom-set-faces
   `(variable-pitch ((t :font ,jj/var-font)))
   `(fixed-pitch ((t :font ,jj/mono-font))))