blob: 9b5a5aaee9a3c2cfc5c50ac864f3103ddbe93cf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
* Introduction
=flymake-rust= adds support for the Rust programming language to Emacs’
built-in Flymake system.
* Installation
This package is not yet available on the various package sites
** Direct download
Download this repository to some location, then add the following to
your Emacs initialization:
#+begin_src emacs-lisp
(add-to-list 'load-path "/path/to/flymake-rust")
(require flymake-rust)
#+end_src
* Usage
Add the setup hook for =rust-mode=
#+begin_src emacs-lisp
(add-hook 'rust-mode-hook 'flymake-rust-setup)
#+end_src
|