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
- Host: GitHub
- URL: https://github.com/dongweiming/plim-mode
- Owner: dongweiming
- License: apache-2.0
- Created: 2014-08-04T06:24:49.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-13T10:38:46.000Z (almost 11 years ago)
- Last Synced: 2025-02-15T01:28:07.503Z (4 months ago)
- Language: Emacs Lisp
- Size: 168 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```