Skip to content

Emacs major mode for editing Rum

License

Notifications You must be signed in to change notification settings

rumlang/rum-mode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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)