From bdb53424c3b526919605661341566a4cd0da923b Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 10 Oct 2019 13:27:09 +0200 Subject: [PATCH] [ADD][VIM] Use dfmt fixer with ALE --- vim/.vim/ftplugin/d.vim | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 vim/.vim/ftplugin/d.vim diff --git a/vim/.vim/ftplugin/d.vim b/vim/.vim/ftplugin/d.vim new file mode 100644 index 0000000..2f58b05 --- /dev/null +++ b/vim/.vim/ftplugin/d.vim @@ -0,0 +1,2 @@ +" Use my desired ALE fixer for D +let b:ale_fixers=[ 'dfmt' ]