Add section on depends-on snippets
This commit is contained in:
parent
2fdc0fbf87
commit
8ea891aeb5
1 changed files with 17 additions and 0 deletions
|
@ -42,3 +42,20 @@ feed]]), which is where I keep my configuration.
|
||||||
prefix all the functions I write and variables I declare with ~oni:~.
|
prefix all the functions I write and variables I declare with ~oni:~.
|
||||||
You don't have to copy it if you copy anything from this file, as
|
You don't have to copy it if you copy anything from this file, as
|
||||||
long as you do it consistently.
|
long as you do it consistently.
|
||||||
|
|
||||||
|
* The ~depends-on~ snippets
|
||||||
|
|
||||||
|
At certain points in this document you will find bits of code that
|
||||||
|
look like:
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp :tangle no
|
||||||
|
(depends-on "somepackage")
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
These calls are from the Cask DSL. They specify that my
|
||||||
|
configuration depends on some package found in one of the ELPA
|
||||||
|
repositories I have setup.
|
||||||
|
|
||||||
|
These snippets don't belong in your =init.el=, but instead in a
|
||||||
|
separate =Cask= file, and only if you use Cask, not if you just use
|
||||||
|
the standard ~package.el~.
|
||||||
|
|
Loading…
Reference in a new issue