use vundle
This commit is contained in:
parent
3412d914af
commit
46d13f69d9
5 changed files with 43 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
*.sw*
|
||||
vim-files/vim/bundle
|
||||
|
|
|
|||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -87,3 +87,6 @@
|
|||
[submodule "vim-files/.vim/bundle/YouCompleteMe"]
|
||||
path = vim-files/.vim/bundle/YouCompleteMe
|
||||
url = https://github.com/Valloric/YouCompleteMe.git
|
||||
[submodule "vim-files/vim/bundle/vundle"]
|
||||
path = vim-files/vim/bundle/vundle
|
||||
url = https://github.com/gmarik/Vundle.vim.git
|
||||
|
|
|
|||
1
vim-files/vim/bundle/vundle
Submodule
1
vim-files/vim/bundle/vundle
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 2d2690e41f875466b7de06f93e7ff93b8c50a9af
|
||||
|
|
@ -1,5 +1,41 @@
|
|||
call pathogen#infect()
|
||||
call pathogen#helptags()
|
||||
set nocompatible " required
|
||||
filetype off " required
|
||||
|
||||
"""" VUNDLE
|
||||
" set the runtime path to include Vundle and initialize
|
||||
set rtp+=~/.vim/bundle/vundle/
|
||||
call vundle#rc()
|
||||
" alternatively, pass a path where Vundle should install bundles
|
||||
"let path = '~/some/path/here'
|
||||
"call vundle#rc(path)
|
||||
|
||||
" let Vundle manage Vundle, required
|
||||
Bundle 'gmarik/vundle'
|
||||
|
||||
|
||||
Bundle 'tpope/vim-sensible'
|
||||
Bundle 'tpope/vim-eunuch'
|
||||
Bundle 'scrooloose/nerdtree'
|
||||
Bundle 'tomtom/tcomment_vim'
|
||||
Bundle 'tpope/vim-characterize'
|
||||
Bundle 'klen/python-mode'
|
||||
Bundle 'jonathanfilip/vim-lucius'
|
||||
Bundle 'majutsushi/tagbar'
|
||||
Bundle 'sjl/gundo.vim'
|
||||
Bundle 'SirVer/ultisnips'
|
||||
Bundle 'kien/ctrlp.vim'
|
||||
Bundle 'terryma/vim-multiple-cursors'
|
||||
Bundle 'myusuf3/numbers.vim'
|
||||
Bundle 'airblade/vim-gitgutter'
|
||||
Bundle 'nathanaelkane/vim-indent-guides'
|
||||
Bundle 'maxbrunsfeld/vim-yankstack'
|
||||
Bundle 'tpope/vim-surround'
|
||||
Bundle 'scrooloose/syntastic'
|
||||
Bundle 'Valloric/YouCompleteMe'
|
||||
|
||||
|
||||
filetype plugin indent on " required
|
||||
""" end vundle
|
||||
|
||||
"""" PLUGIN SETTINGS
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue