aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.org b/README.org
index a11adbb..ac9094b 100644
--- a/README.org
+++ b/README.org
@@ -35,3 +35,15 @@ ennum lets you tangle source blocks embedded in posts and write them to a separa
** Pure Emacs Lisp
ennum is written purely in Emacs Lisp [fn::except for the image processing code, for which we shell out to external command-line tools]. No need to pull up your terminal emulator or shell mode to rebuild your blog.
+
+* Installation
+
+Clone the repository.
+#+BEGIN_SRC sh
+ $ git clone https://git.systemreboot.net/ennum/
+#+END_SRC
+Add the path to the cloned repository to your load path, and load ennum.
+#+BEGIN_SRC emacs-lisp
+ (add-to-list 'load-path "~/ennum")
+ (require 'ennum)
+#+END_SRC