Add a local site-lisp directory to the Emacs load path

This commit is contained in:
Ohad Livne 2025-06-04 22:47:26 +03:00
parent 633308b5c3
commit 0c60b1ede1
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

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