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

9 lines
240 B
VimL
Raw Normal View History

2015-12-03 09:06:43 -08:00
" Neomake
let g:neomake_python_enabled_makers = ['pyflakes', 'pep8']
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