Add comment

This commit is contained in:
Bram Schoenmakers 2022-11-24 08:52:40 +01:00
parent 40e78db5f4
commit ab900bb1d4
2 changed files with 10 additions and 0 deletions

View File

@ -34,6 +34,11 @@ Put this in ~/.termux/termux.properties for a better Emacs experience inside Ter
:END:
#+begin_src elisp :tangle gists/use-package-nesting.el
;; Demonstrate that use-package allows for nesting configurations,
;; although it is done semantically rather than syntactically. The
;; :after keyword makes sure that the 'bar' package is only evaluated
;; after the 'foo' package was loaded.
(use-package foo)
;; only loads after foo has been loaded

View File

@ -1,3 +1,8 @@
;; Demonstrate that use-package allows for nesting configurations,
;; although it is done semantically rather than syntactically. The
;; :after keyword makes sure that the 'bar' package is only evaluated
;; after the 'foo' package was loaded.
(use-package foo)
;; only loads after foo has been loaded