summaryrefslogtreecommitdiffstats
path: root/vim/ftplugin/rust.vim
blob: d090a5cf41aec765059b23c0ef14ba45ac4a6664 (plain) (blame)
1
2
3
4
5
6
7
8
let b:ale_rust_cargo_use_check = 1

if filereadable("Cargo.toml")
    compiler cargo
    setlocal makeprg=cargo\ build
else
    setlocal makeprg=rustc\ %
endif