dotfiles/vim-files/vim/ftplugin/python.vim
2015-12-03 09:06:43 -08:00

8 lines
240 B
VimL

" Neomake
let g:neomake_python_enabled_makers = ['pyflakes', 'pep8']
""" 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