Why does vim not obey my expandtab in python files?
After I installed Vundle, my vim no longer obeys the expandtab settings I had. My tabs were set to 2 spaces, but now in python files it no longer does that. The problem is being called by this line: filetype plugin on What does this line do (It is required by vundle)? Also, what can I do to make sure my settings are obeyed? Thanks! VIMRC: pastebin.com/tGmfCi78 John Szakmeister The problem is that your settings are being overridden by a filetype plugin that's part of Vim. The issue is in ftplugin/python.vim : " As suggested by PEP8. setlocal expandtab shiftwidth=4 softtabstop=4 tabstop=8 The