dotfiles/.config/emacs/force-custom-file.org
2024-08-08 17:07:35 -05:00

362 B

Emacs Force the Usage of a custom.el File

Force the usage of a custom.el file for customizations instead of placing them in init.el.

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