diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-03-15 19:11:53 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-03-15 19:11:53 -0700 |
commit | 61a2df88b4a3e8120e383ee0949ea19855350785 (patch) | |
tree | 1c33af3781a02f0400e7295dd74ed3a74d24a7ab /emacs | |
parent | elfeed: add a few more blogs (diff) | |
download | emacs.d-61a2df88b4a3e8120e383ee0949ea19855350785.tar.gz |
emacs: new path to load elisp code
Add a new path to load custom elisp code.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 0fa1b86..3c44b6a 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -6,6 +6,7 @@ ;; and now we load custom configurations (add-to-list 'load-path (expand-file-name "custom" user-emacs-directory)) +(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory)) (require 'fcuny-vars) |