Skip to content

Commit

Permalink
more migration to vundle
Browse files Browse the repository at this point in the history
  • Loading branch information
spf13 committed May 17, 2011
1 parent f7f709b commit da6fa0c
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 75 deletions.
72 changes: 0 additions & 72 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,75 +1,3 @@
[submodule ".vim/bundle/snipmate"]
path = .vim/bundle/snipmate
url = git://github.com/spf13/snipmate.vim.git
[submodule ".vim/bundle/nerdcommenter"]
path = .vim/bundle/nerdcommenter
url = git://github.com/scrooloose/nerdcommenter.git
[submodule ".vim/bundle/spf13-vim-colors"]
path = .vim/bundle/spf13-vim-colors
url = git://github.com/spf13/vim-colors.git
[submodule ".vim/bundle/snipmate-snippets"]
path = .vim/bundle/snipmate-snippets
url = git://github.com/spf13/snipmate-snippets.git
[submodule ".vim/bundle/snipmate-snippets/snippets"]
path = .vim/bundle/snipmate-snippets/snippets
url = git://github.com/spf13/snipmate-snippets.git
[submodule ".vim/bundle/supertab"]
path = .vim/bundle/supertab
url = git://github.com/ervandew/supertab.git
[submodule ".vim/bundle/fugitive"]
path = .vim/bundle/fugitive
url = http://github.com/tpope/vim-fugitive.git
[submodule ".vim/bundle/delimitMate"]
path = .vim/bundle/delimitMate
url = http://github.com/Raimondi/delimitMate.git
[submodule ".vim/bundle/checksyntax"]
path = .vim/bundle/checksyntax
url = http://github.com/tomtom/checksyntax_vim.git
[submodule ".vim/bundle/command-t"]
path = .vim/bundle/command-t
url = git://github.com/wincent/Command-T.git
[submodule ".vim/bundle/vim-markdown"]
path = .vim/bundle/vim-markdown
url = git://github.com/spf13/vim-markdown.git
[submodule ".vim/bundle/easytags"]
path = .vim/bundle/easytags
url = http://github.com/spf13/vim-easytags.git
[submodule ".vim/bundle/surround"]
path = .vim/bundle/surround
url = git://github.com/spf13/vim-surround.git
[submodule ".vim/bundle/piv"]
path = .vim/bundle/piv
url = git://github.com/spf13/PIV.git
[submodule ".vim/bundle/VimDebugger"]
path = .vim/bundle/VimDebugger
url = git://github.com/taxilian/VimDebugger.git
[submodule ".vim/bundle/nerdtree"]
path = .vim/bundle/nerdtree
url = git://github.com/spf13/nerdtree.git
[submodule ".vim/bundle/jslint"]
path = .vim/bundle/jslint
url = git://github.com/bloveridge/jslint.vim.git
[submodule ".vim/bundle/pyflakes"]
path = .vim/bundle/pyflakes
url = git://github.com/bloveridge/pyflakes-vim.git
[submodule ".vim/bundle/ack"]
path = .vim/bundle/ack
url = git://github.com/mileszs/ack.vim.git
[submodule ".vim/bundle/vim-json"]
path = .vim/bundle/vim-json
url = git://github.com/leshill/vim-json.git
[submodule ".vim/bundle/vim-colors-solarized"]
path = .vim/bundle/vim-colors-solarized
url = https://github.com/altercation/vim-colors-solarized.git
[submodule ".vim/bundle/pydoc.vim"]
path = .vim/bundle/pydoc.vim
url = https://github.com/fs111/pydoc.vim.git
[submodule ".vim/bundle/tabular"]
path = .vim/bundle/tabular
url = https://github.com/godlygeek/tabular.git
[submodule ".vim/bundle/vim-preview"]
path = .vim/bundle/vim-preview
url = https://github.com/greyblake/vim-preview.git
[submodule ".vim/vundle.git"]
path = .vim/vundle.git
url = http://github.com/gmarik/vundle.git
46 changes: 43 additions & 3 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,53 @@
"
" Setup Bundle Support {
" The next two lines ensure that the ~/.vim/bundle/ system works
runtime! autoload/pathogen.vim
silent! call pathogen#helptags()
silent! call pathogen#runtime_append_all_bundles()
set rtp+=~/.vim/vundle.git/
call vundle#rc()
" }

" }

" Bundles {
" GitHub Bundles {
Bundle 'spf13/snipmate.vim'
Bundle 'spf13/vim-colors'
Bundle 'spf13/snipmate-snippets'
Bundle 'spf13/vim-markdown'
Bundle 'spf13/vim-surround'
Bundle 'spf13/PIV'
Bundle 'spf13/nerdtree'
Bundle 'altercation/vim-colors-solarized'
Bundle 'tpope/vim-fugitive'
Bundle 'lokaltog/vim-easymotion'
Bundle 'scrooloose/nerdcommenter'
Bundle 'ervandew/supertab'
Bundle 'Raimondi/delimitMate'
Bundle 'tomtom/checksyntax_vim'
Bundle 'wincent/Command-T'
Bundle 'taxilian/VimDebugger'
Bundle 'bloveridge/jslint.vim'
Bundle 'bloveridge/pyflakes-vim'
Bundle 'mileszs/ack.vim'
Bundle 'leshill/vim-json'
Bundle 'fs111/pydoc.vim'
Bundle 'godlygeek/tabular'
Bundle 'greyblake/vim-preview'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" }
" vim-scripts repos {
Bundle 'L9'
Bundle 'FuzzyFinder'
Bundle 'rails.vim'
Bundle 'matchit.zip'
Bundle 'python.vim'
Bundle 'python_match.vim'
Bundle 'pythoncomplete'
" }
" non github repos {
"Bundle 'git://git.wincent.com/command-t.git'"
" }
" }

" General {
set background=dark " Assume a dark background
if !has('win32') && !has('win64')
Expand Down

0 comments on commit da6fa0c

Please sign in to comment.