From: rearman Date: Wed, 15 Mar 2023 16:18:04 +0000 (-0400) Subject: Ignore compiled files, load custom file X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=7393c0d681c0222f18078cf6579b58c174de9848;p=emacsinit.git Ignore compiled files, load custom file --- diff --git a/.gitignore b/.gitignore index 1dba67a..e771293 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.elc auto-save-list/ bookmarks custom.el diff --git a/init.org b/init.org index 11a973d..8bdee53 100644 --- a/init.org +++ b/init.org @@ -1026,7 +1026,7 @@ Inputs are temp (F) and humidity (%). Returns a list of Saturated Water Pressur I do not use the customize system. I don't want to see it if I don't have to. #+BEGIN_SRC emacs-lisp -(setq custom-file (expand-file-name "etc/custom.el" user-emacs-directory)) +(setq custom-file (expand-file-name "custom.el" user-emacs-directory)) (load custom-file) #+END_SRC