zig/doc/emacs/README.md
2017-03-02 23:03:44 -05:00

8 lines
234 B
Markdown

To use this emacs syntax file, add this to your emacs configuration file:
```emacs
(add-to-list 'load-path "/path/to/zig/doc/emacs/")
(autoload 'zig-mode "zig-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.zig\\'" . zig-mode))
```