Next: Rhtml Setup, Previous: Install, Up: Install
The latest Rinari can be obtained from http://github.com/eschulte/rinari/tree/master. Select the “download” button to grab an archive of the source code, or checkout a copy using git (Note: when cloning Rinari using git it is necessary to explicitly update the submodules included with Rinari) by executing the following.
git clone git://github.com/eschulte/rinari.git
cd rinari
git submodule init
git submodule update
Place the base rinari directory into your Emacs lisp directory. To automatically load Rinari every time you open Emacs add these lines of code to your .emacs file:
;; Interactively Do Things (highly recommended, but not strictly required)
(require 'ido)
(ido-mode t)
;; Rinari
(add-to-list 'load-path "~/path/to/your/elisp/rinari")
(require 'rinari)