6 ms·
mind sticking up the relevant sections of your vimrc somewhere so I could take a look? the rust stuff in my vim dates to v. early post 1.0 and would love to li
by imc 8y ago
mind sticking up the relevant sections of your vimrc somewhere so I could take a look?
the rust stuff in my vim dates to v. early post 1.0 and would love to link ale + rls up.
- ilovecaching 8y agoSure, install w0rp/ale using your favorite plugin manager, install rustup and run: rustup component add rls-preview rust-analysis rust-src --toolchain nightly then add this to .vim/ftplugin/rust.vim: let b:ale_linters = {'rust': ['rls','cargo','rustc']} let g:ale_fixers = {'rust': ['rustfmt']} let g:ale_completion_enabled = 1
- imc 8y agoperfect, thanks!