spacemacs/layers/+lang/rust
2016-01-31 23:04:48 -05:00
..
img Use + instead of ! for layer categories 2015-09-11 00:13:51 -04:00
config.el rust: format rust code using rustfmt 2016-01-11 22:01:48 -05:00
funcs.el Clean copyrights and update for year 2016 2016-01-11 21:42:17 -05:00
packages.el Tweak flycheck loading process 2016-01-31 23:04:48 -05:00
README.org rust: format rust code using rustfmt 2016-01-11 22:01:48 -05:00

Rust contribution layer for Spacemacs

/TakeV/spacemacs/media/commit/bc0d0de8219adea45a6f7352c93a980c61240fcb/layers/+lang/rust/img/rust.png

Description

This layer supports Rust development in Spacemacs.

It has auto-completion and navigation support through Racer and supports Cargo.

Install

Layer

To use this configuration layer, add it to your ~/.spacemacs. You will need to add rust to the existing dotspacemacs-configuration-layers list in this file.

Racer

You must install Racer to use this. Make sure the racer binary is available in your PATH and to set the environment variable RUST_SRC_PATH, as described in the installation instructions.

To enable auto-completion, ensure that the auto-completion layer is enabled.

Cargo

Cargo is a project management command line tool for Rust. Installation instructions can be found on the main page of Cargo.

Rustfmt

Format Rust code according to style guidelines using rustfmt.

cargo install rustfmt

To enable automatic buffer formatting on save, set the variable rust-enable-rustfmt-on-save to t.

  (setq-default dotspacemacs-configuration-layers '(
    (rust :variables rust-enable-rustfmt-on-save t)))

Key bindings

Key Binding Description
SPC m c c compile project with Cargo
SPC m c t run tests with Cargo
SPC m c d generate documentation with Cargo
SPC m c x execute the project with Cargo
SPC m c C remove build artifacts with Cargo
SPC m g g jump to definition
SPC m = reformat the buffer