From 440f721fab46df675f778ed2d8fb4017174d4d1a Mon Sep 17 00:00:00 2001 From: David Florness Date: Sun, 26 Aug 2018 22:13:16 -0600 Subject: [PATCH] Load all /usr/local site lisp --- init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.el b/init.el index a9a3384..4b837e9 100644 --- a/init.el +++ b/init.el @@ -12,6 +12,8 @@ ;;; Install local user packages (dolist (d (file-expand-wildcards "~/.local/share/emacs/site-lisp/*")) (add-to-list 'load-path d t)) +(dolist (d (file-expand-wildcards "/usr/local/share/emacs/site-lisp/*")) + (add-to-list 'load-path d t)) (add-to-list 'load-path "~/.emacs.d/lisp") -- 2.38.4