rust/atom.md
2015-11-17 10:52:05 +05:30

21 lines
1.1 KiB
Markdown

# Running Rustfmt from Atom
You'll need to install [Beautify](https://atom.io/packages/atom-beautify), you
can do this by running `apm install atom-beautify`.
There are 2 setting that need to be configured in the atom beautifier configuration.
- Install rustfmt as per the [readme](README.md).
- Open the atom beautifier settings
Go to Edit->Preferences. Click the packages on the left side and click on setting for atom-beautifier
- Set rustfmt as the beautifier
Find the setting labeled *Language Config - Rust - Default Beautifier* and make sure it is set to rustfmt as shown below. You can also set the beautifier to auto format on save here.
![image](https://cloud.githubusercontent.com/assets/6623285/11147685/c8ade16c-8a3d-11e5-9da5-bd3d998d97f9.png)
- Set the path to your rustfmt location
Find the setting labeled *Rust - Rustfmt Path*. This setting is towards the bottom and you will need to scroll a bit. Set it to the path for your rustfmt executable.
![image](https://cloud.githubusercontent.com/assets/6623285/11147718/f4d10224-8a3d-11e5-9f69-9e900cbe0278.png)