An open API service indexing awesome lists of open source software.

https://github.com/dongweiming/plim-mode

Major mode for editing Plim files
https://github.com/dongweiming/plim-mode

Last synced: 3 months ago
JSON representation

Major mode for editing Plim files

Awesome Lists containing this project

README

        

plim-mode
=========

Major mode for editing Plim files

Installation
===

```
$ git clone https://github.com/dongweiming/plim-mode
# (optional) Byte-compile the files:
M-x byte-compile-file (path/to/plim-mode/plim-mode.el)
# Add the path to your load-path:
(add-to-list 'load-path "path/to/plim-mode/")
# Add to your .emacs:
(require 'plim-mode)
```

MELPA
===

If you're an Emacs 24 user or you have a recent version of
package.el you can install plim-mode from the MELPA repository.

```lisp
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
(when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
(package-initialize)
```

```
M-x package-install plim-mode
```