aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-08-19 01:30:23 +0530
committerArun Isaac2022-08-19 01:38:43 +0530
commit504f83e4f447c926e70fea284dbab36065f7005c (patch)
tree4ca58fe82b490f284092d4225014331c217b112d
parentb5fcffe362f5334a70d885e7a269ec9addb6a841 (diff)
downloadennum-504f83e4f447c926e70fea284dbab36065f7005c.tar.gz
ennum-504f83e4f447c926e70fea284dbab36065f7005c.tar.lz
ennum-504f83e4f447c926e70fea284dbab36065f7005c.zip
Add installation instructions.
* README.org (Installation): New section.
-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