mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 17:49:53 +00:00
13 lines
325 B
VimL
13 lines
325 B
VimL
""""""""""""""""""""""""""""""""
|
|
" Rust-specific defaults "
|
|
" from webinstall.dev/vim-rust "
|
|
""""""""""""""""""""""""""""""""
|
|
|
|
" run rustfmt on save
|
|
let g:rustfmt_autosave = 1
|
|
|
|
" run cargo check for linting
|
|
let g:ale_rust_cargo_use_check = 1
|
|
let g:ale_rust_cargo_check_tests = 1
|
|
let g:ale_rust_cargo_check_examples = 1
|