From 915026afe8afa08cbf8db5a134cf6f54cf740a0a Mon Sep 17 00:00:00 2001 From: finga Date: Mon, 21 Oct 2024 08:10:58 +0200 Subject: [PATCH] init: Configure `custom-file` Configure `custom-file` path. That is the file used for storing customization information. This is now set to "~/.emacs.d/custom.el". --- .emacs.d/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 7e7f9ac..f5cde64 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -39,6 +39,10 @@ ;; configure packages (taken from https://r0tty.org/git/dotfiles/emacs) (require 'use-package) +;; file used for storing customization information +(setq custom-file "~/.emacs.d/custom.el") +(load custom-file) + ;; set auth-sources (setq auth-sources '("~/.authinfo.gpg"))