I use the Pathogen
plugin for gvim
. When configuring I set the following in my vimrc
file:
call pathogen#infect()
call pathogen#helptags()
call pathogen#runtime_append_all_bundles()
filetype on "force reloading *after* pathogen loaded
Now I'm following this tutorial on Youtube by Martin Brochhaus to set up Vim to be useful for Python coding and he suggests the following:
filetype off
filetype plugin indent on
syntax on
So currently I have filetype on
for pathogen but he is suggesting filetype off
. What does this line of code do and how should I configure vimrc
so Pathogen and Python are both happy?
:h filetypes
. – Ezzell