From 9388273a76d81efb089e49d94a2938bd0c9f3c3c Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Wed, 23 Sep 2020 13:33:26 +0200 Subject: [PATCH] add python settings --- vim/ftplugin/python.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/ftplugin/python.vim b/vim/ftplugin/python.vim index 1a35c7a..b6c1aee 100644 --- a/vim/ftplugin/python.vim +++ b/vim/ftplugin/python.vim @@ -6,6 +6,8 @@ if getline(1) =~# '^#!.*python3\>' endif endif -let g:ale_fixers['python'] = ['autopep8'] +let g:ale_fixers['python'] = ['black'] let g:ale_fix_on_save = 1 let g:pymode_run_bind = '' + +nmap F"ifA