diff options
author | Arun Isaac | 2022-08-19 01:30:23 +0530 |
---|---|---|
committer | Arun Isaac | 2022-08-19 01:38:43 +0530 |
commit | 504f83e4f447c926e70fea284dbab36065f7005c (patch) | |
tree | 4ca58fe82b490f284092d4225014331c217b112d /README.org | |
parent | b5fcffe362f5334a70d885e7a269ec9addb6a841 (diff) | |
download | ennum-504f83e4f447c926e70fea284dbab36065f7005c.tar.gz ennum-504f83e4f447c926e70fea284dbab36065f7005c.tar.lz ennum-504f83e4f447c926e70fea284dbab36065f7005c.zip |
Add installation instructions.
* README.org (Installation): New section.
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 |