dotfiles/vim-files/vim/ftplugin/python.vim

9 lines
230 B
VimL
Raw Normal View History

2015-12-03 09:06:43 -08:00
" Neomake
2017-07-28 01:04:53 -07:00
let g:neomake_python_enabled_makers = ['flake8']
2015-10-08 14:55:54 -07:00
""" Handy remaps
noremap <leader>b Oimport ipdb;ipdb.set_trace()<Esc>
" Don't use tabs in python files
autocmd FileType python setlocal expandtab tabstop=4 shiftwidth=4