changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / emacs/init.el

revision 33: e3b0ec661dfa
parent 27: 1142c97f92ab
child 43: 519ab3f9f548
     1.1--- a/emacs/init.el	Sat Nov 04 20:11:43 2023 -0400
     1.2+++ b/emacs/init.el	Sat Nov 04 21:16:49 2023 -0400
     1.3@@ -4,5 +4,9 @@
     1.4 
     1.5 ;;; Code:
     1.6 (dolist (x '("util.el" "default.el" "keys.el"))
     1.7-  (load-file (concat user-emacs-directory x)))
     1.8-(add-to-load-path (join-paths user-emacs-directory "lib/"))
     1.9+  (load (native-compile (concat user-emacs-directory x))))
    1.10+
    1.11+(add-to-load-path (expand-file-name "lib" user-emacs-directory))
    1.12+
    1.13+(if (and (boundp 'user-custom-file) (file-exists-p user-custom-file))
    1.14+	(load-file user-custom-file))