summaryrefslogtreecommitdiffstats
path: root/vim/ftplugin/rust.vim
blob: b899d501343052bcc49012f803d471c8ffa314eb (plain) (blame)
1
2
3
4
5
6
7
8
if filereadable("Cargo.toml")
     compiler cargo
    setlocal makeprg=cargo\ build
else
    setlocal makeprg=rustc\ %
endif

let b:ale_rust_cargo_use_check = 1