Allow non-loaded HAMACS file to be loaded later
While I don't want to automatically load all my projects (for instance, for programming languages I don't use much), after loading all files, I then put the rest in the list, allowing me to load them later.
This commit is contained in:
parent
fbf4ee929c
commit
35e41b1ee9
1 changed files with 8 additions and 0 deletions
|
@ -236,6 +236,14 @@ And do it:
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(ha-hamacs-reload-all)
|
(ha-hamacs-reload-all)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
Once we have loaded /my world/, let’s add every other Org file in the project to the list, so that I can easily bring more stuff.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(setq ha-hamacs-files
|
||||||
|
(-uniq
|
||||||
|
(append ha-hamacs-files
|
||||||
|
(directory-files "~/other/hamacs" nil (rx ".org" eos)))))
|
||||||
|
#+END_SRC
|
||||||
* Technical Artifacts :noexport:
|
* Technical Artifacts :noexport:
|
||||||
Let's provide a name so that the file can be required:
|
Let's provide a name so that the file can be required:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue