summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2015-04-21 22:18:01 +0200
committerGravatar Tom Willemse2015-04-21 22:18:01 +0200
commit8ea891aeb512e0371884af850a2a70c43c079d9b (patch)
treef0fe4ecabd9d7a040bd249074948379a3500c5f6
parent2fdc0fbf872ddaece9e36097f135892cad36584e (diff)
downloaddotfiles-8ea891aeb512e0371884af850a2a70c43c079d9b.tar.gz
dotfiles-8ea891aeb512e0371884af850a2a70c43c079d9b.zip
Add section on depends-on snippets
-rw-r--r--emacs/.emacs.d/org/intro.org17
1 files changed, 17 insertions, 0 deletions
diff --git a/emacs/.emacs.d/org/intro.org b/emacs/.emacs.d/org/intro.org
index fc6fd7f..7c2d2bd 100644
--- a/emacs/.emacs.d/org/intro.org
+++ b/emacs/.emacs.d/org/intro.org
@@ -42,3 +42,20 @@ feed]]), which is where I keep my configuration.
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
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~.