From 0c60b1ede1c88ef6d236a19f82e12060a9cef4a8 Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Wed, 4 Jun 2025 22:47:26 +0300 Subject: [PATCH] Add a local site-lisp directory to the Emacs load path --- .config/emacs/init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.config/emacs/init.el b/.config/emacs/init.el index a473399..68a9830 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -19,7 +19,11 @@ :hook ((after-save . executable-make-buffer-file-executable-if-script-p) (xref-after-update . outline-minor-mode)) :init - (setq load-path (append (list (expand-file-name "~/Projects/lilypond/elisp")) load-path)) + (setq load-path (append (list + (expand-file-name "~/.config/emacs/site-lisp/") + (expand-file-name "~/Projects/lilypond/elisp") + ) + load-path)) :config ; keep-sorted start (defalias 'yes-or-no-p 'y-or-n-p)