From a05e69e52ddedc1ccd0c1949b3fd263a9a1684b3 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Tue, 1 Nov 2011 22:26:09 -0500 Subject: [PATCH] .vimrc: Move 'filetype' plugin init to after pathogen init --- .vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 73c8847..429abac 100644 --- a/.vimrc +++ b/.vimrc @@ -6,12 +6,13 @@ set nocompatible " essential set history=1000 " lots of command line history set confirm " error files / jumping set fileformats=unix,dos,mac " support these files -filetype plugin indent on " load filetype plugin set iskeyword+=_,$,@,%,#,- " none word dividers set viminfo='1000,f1,:100,@100,/20 set modeline " make sure modeline support is enabled set autoread " reload files (no local changes only) + call pathogen#infect() " enable pathogen (plugin bundles) +filetype plugin indent on " load filetype plugin " --------------------------------------------------------------------------- " Colors / Theme -- 2.43.0