From f3983402a9d3c851e6f958ee91e6cf15512228da Mon Sep 17 00:00:00 2001 From: Lorenzo Good Date: Sun, 4 Jan 2026 14:48:55 -0600 Subject: [PATCH] Add init header and modified load path. --- init.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/init.el b/init.el index 0923578..3811104 100644 --- a/init.el +++ b/init.el @@ -1,3 +1,13 @@ +;;; init.el --- -*- lexical-binding: t; -*- + +;; Use this at the top of your .emacs file for local overrides: +;; (let ((init "~/.emacs.d/init.elc")) +;; (if (file-exists-p init) +;; (load-file init) +;; (load-file (substring init 0 -1)))) + +(add-to-list 'load-path "~/.emacs.d/lisp") + (with-eval-after-load 'package (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t))