From 5a13a3540236c5a3dae10972cee38a718820b6b3 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 9 Oct 2019 17:09:29 +0200 Subject: [PATCH] [ADD][VIM] Use rustfmt fixer with ALE --- vim/.vim/ftplugin/rust.vim | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 vim/.vim/ftplugin/rust.vim diff --git a/vim/.vim/ftplugin/rust.vim b/vim/.vim/ftplugin/rust.vim new file mode 100644 index 0000000..44d4666 --- /dev/null +++ b/vim/.vim/ftplugin/rust.vim @@ -0,0 +1,2 @@ +" Use rustfmt as ALE fixer for rust +let b:ale_fixers=[ 'rustfmt' ]