vim: fix Pathogen to work with annoying Linux distros
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 21 Sep 2010 12:51:12 -0400 |
parents |
67946af79b72
|
children |
2e52cefc1899
|
branches/tags |
(none) |
files |
vim/.vimrc |
Changes
--- a/vim/.vimrc Fri Sep 17 11:02:02 2010 -0400
+++ b/vim/.vimrc Tue Sep 21 12:51:12 2010 -0400
@@ -1,4 +1,5 @@
filetype off
+call pathogen#runtime_append_all_bundles()
filetype plugin indent on
set nocompatible
@@ -67,9 +68,6 @@
set background=dark
colorscheme delek
-" Use Pathogen to load bundles
-call pathogen#runtime_append_all_bundles()
-
" NERD Tree
map <F2> :NERDTreeToggle<cr>
let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$']