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

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
#Local Gitignore for Repo#
##########################
#Ignore the vim bundle directory, thanks to Vundle
vim/vim/bundle

21
.gitmodules vendored
View file

@ -1,24 +1,3 @@
[submodule "vim/vim/bundle/vim-fugitive"]
path = vim/vim/bundle/vim-fugitive
url = https://github.com/tpope/vim-fugitive
[submodule "vim/vim/bundle/vim-airline"]
path = vim/vim/bundle/vim-airline
url = https://github.com/bling/vim-airline
[submodule "vim/vim/bundle/vim-sneak"]
path = vim/vim/bundle/vim-sneak
url = https://github.com/justinmk/vim-sneak
[submodule "vim/vim/bundle/vim-pathogen"]
path = vim/vim/bundle/vim-pathogen
url = https://github.com/tpope/vim-pathogen
[submodule "vim/vim/bundle/vim-vinegar"]
path = vim/vim/bundle/vim-vinegar
url = https://github.com/tpope/vim-vinegar
[submodule "dotbot"] [submodule "dotbot"]
path = dotbot path = dotbot
url = https://github.com/anishathalye/dotbot url = https://github.com/anishathalye/dotbot
[submodule "vim/vim/bundle/vim-template"]
path = vim/vim/bundle/vim-template
url = https://github.com/ap/vim-templates.git
[submodule "vim/vim/bundle/vimwiki"]
path = vim/vim/bundle/vimwiki
url = https://github.com/vimwiki/vimwiki

View file

@ -4,6 +4,7 @@
~/.dotfiles: '' ~/.dotfiles: ''
~/.vim: vim/vim/ ~/.vim: vim/vim/
~/.vimrc: vim/vimrc ~/.vimrc: vim/vimrc
~/.vimrc.bundle: vim/vimrc.bundle
~/.gitconfig: git/gitconfig ~/.gitconfig: git/gitconfig
~/.gitignore: git/gitignore ~/.gitignore: git/gitignore
~/.tmux.conf: tmux/tmux.conf ~/.tmux.conf: tmux/tmux.conf

@ -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 " Enables addons via Pathogen
" Add-ons go in ~/.vim/bundle/ " Add-ons go in ~/.vim/bundle/
runtime bundle/vim-pathogen/autoload/pathogen.vim " runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect() " execute pathogen#infect()
" Load plugins with Vundle
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
endif
" Airline configuration " Airline configuration
set laststatus=2 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