From 5184dd5a569d832dcffa2419fd1843487b9c1ee3 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 8 Oct 2019 15:40:58 +0200 Subject: [PATCH] [ADD][VIM] Use black fixer with ALE This introduces the '.vim' folder to my dot-files repository. I'll have to think about splitting my '.vimrc' file into multiple files inside the '.vim' folder. --- vim/.vim/ftplugin/python.vim | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 vim/.vim/ftplugin/python.vim diff --git a/vim/.vim/ftplugin/python.vim b/vim/.vim/ftplugin/python.vim new file mode 100644 index 0000000..b432265 --- /dev/null +++ b/vim/.vim/ftplugin/python.vim @@ -0,0 +1,2 @@ +" Use black as ALE fixer for python +let b:ale_fixers=[ 'black' ]