Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 764 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 764 Bytes

rum-mode

Emacs major mode for editing Rum

Installation

rum-mode is available on the two major community maintained repositories - MELPA STABLE and MELPA.

You can install rum-mode with the following command:

M-x package-install [RET] rum-mode [RET]

or by adding this bit of Emacs Lisp code to your Emacs initialization file (.emacs or init.el):

(unless (package-installed-p 'rum-mode)
  (package-install 'rum-mode))

Manual

You can install rum-mode manually by placing rum-mode on your load-path and require ing it. Many people favour the folder ~/.emacs.d/vendor.

(add-to-list 'load-path "path/to/rum-mode/dir")
(require 'rum-mode)