Emacs major mode for editing Rum
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))
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)