Update Vim to use Vundle, thus removed many submodules

This commit is contained in:
Bill Niblock 2015-10-27 19:10:16 -04:00
parent 2086540df2
commit e515a7c33e
13 changed files with 43 additions and 30 deletions

@ -1 +0,0 @@
Subproject commit f45ecdac15d99ed2354873a8b4d40432fd0a85a3

@ -1 +0,0 @@
Subproject commit 4cc201cbe3a0c3faa4cde1b82ba941d410e5e81c

@ -1 +0,0 @@
Subproject commit b9fb0dfd811004010f5f6903edef42d6004ebea2

@ -1 +0,0 @@
Subproject commit fe77f80bebf8935fe58e5b395653a19a24ca0c97

@ -1 +0,0 @@
Subproject commit d3682469538340454d1e11d143735683cc75a13a

@ -1 +0,0 @@
Subproject commit ac893960c324d879b6923a4c1abaea352d8caeb5

@ -1 +0,0 @@
Subproject commit 2c03d82a0e4662adf1e347487d73a9bf4bf6fdac

View file

@ -22,8 +22,13 @@ set showcmd
" Enables addons via Pathogen
" Add-ons go in ~/.vim/bundle/
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
" runtime bundle/vim-pathogen/autoload/pathogen.vim
" execute pathogen#infect()
" Load plugins with Vundle
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
endif
" Airline configuration
set laststatus=2

29
vim/vimrc.bundles Normal file
View file

@ -0,0 +1,29 @@
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Current list of plugins
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-vinegar'
Plugin 'bling/vim-airline'
Plugin 'justinmk/vim-sneak'
Plugin 'ap/vim-templates'
Plugin 'vimwiki/vimwiki'
call vundle#end()
" Brief help
" " :PluginList - lists configured plugins
" " :PluginInstall - installs plugins; append `!` to update or just
" :PluginUpdate
" " :PluginSearch foo - searches for foo; append `!` to refresh local cache
" " :PluginClean - confirms removal of unused plugins; append `!` to
" auto-approve removal
" "
" " see :h vundle for more details or wiki for FAQ