1
0
Fork 0

Add init header and modified load path.

This commit is contained in:
Lorenzo Good 2026-01-04 14:48:55 -06:00
parent 1928ab6900
commit f3983402a9
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0

10
init.el
View file

@ -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))