On vundle's homepage, it documented that it requires filetype to be off in .vimrc:
filetype off " required! set rtp+=~/.vim/bundle/vundle/ call vundle#rc()
I don't understand why. Since I am encountering problems with editing .coffee and .less files recently after separately-installed related plugins for them (vim-coffee-script and vim-less). My issue on vim-coffee-script
But if you do switch off filetype detection, the indent files will not be loaded either. This actually loads the file "indoff.vim" in 'runtimepath'. This disables auto-indenting for files you will open. It will keep working in already opened files.
Vim's functionality can be extended to different levels using plugins, and these can be controlled by Vundle. This is an extremely useful plugin for manage Vim plugins. Vundle creates a separate directory tree for each plugin we install and stores additional configuration files in the corresponding plugin directory.
You can set filetype on
after the last Vundle command:
filetype off " required! set rtp+=~/.vim/bundle/vundle/ call vundle#rc() ... Vundle 'blabla' Vundle 'blabla2' filetype plugin indent on " re-enable filetype
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With