X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/7e431d37782ce1143c813976176a221e5c32a8e0..04d4f692235a57b68b6ff9b82b536f7e3bfe437b:/.vim/after/ftplugin/python.vim diff --git a/.vim/after/ftplugin/python.vim b/.vim/after/ftplugin/python.vim deleted file mode 100644 index ee9073d9..00000000 --- a/.vim/after/ftplugin/python.vim +++ /dev/null @@ -1,20 +0,0 @@ -let python_highlight_all=1 - -let g:linelength = 79 - -setlocal sw=4 -setlocal sts=4 -let &l:textwidth=g:linelength -setlocal autoindent - -setlocal formatoptions+=bl - -nnoremap :Black -inoremap :Black -nnoremap :call flake8#Flake8() -inoremap :call flake8#Flake8() - -let g:flake8_quickfix_height=3 -let g:black_linelength = g:linelength - -imap t import ipdb; ipdb.set_trace() # noqa:E402,E702