dotfiles/nixos/.flake/home/programs/emacs/force-custom-file.el.org
2024-09-28 11:03:57 -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))