[vim] Add rustfmt installation command

This commit is contained in:
Vladan Popovic 2019-07-31 21:30:49 +02:00
parent 2d5b6756f5
commit 2441d26fd7
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ let g:ale_sign_error = "✗"
let g:ale_sign_warning = "⚠" let g:ale_sign_warning = "⚠"
" "
" Rust linting options " Rust linting options
let g:ale_rust_cargo_use_clippy = 1 " use `rustup component add clippy-preview` to get it let g:ale_rust_cargo_use_clippy = 1 " installed with `rustup component add clippy-preview`
let g:rustfmt_autosave = 1 let g:rustfmt_autosave = 1 " installed with `rustup component add rustfmt`
call vundle#end() call vundle#end()