README.md 318 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
Syntax Coloring for Emacs
=========================

How to use:

Add this to your .emacs file (altering the path to wherever your
capnproto directory lives):

```elisp
(add-to-list 'load-path "~/src/capnproto/highlighting/emacs")
(require 'capnp-mode)
(add-to-list 'auto-mode-alist '("\\.capnp\\'" . capnp-mode))
```