Add vim-vundle

This commit is contained in:
Gea-Suan Lin
2013-07-13 19:35:28 +08:00
parent 0d6281f3a9
commit f6adfcef48
3 changed files with 12 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule ".vim/bundle/vundle"]
path = .vim/bundle/vundle
url = https://github.com/gmarik/vundle.git

1
.vim/bundle/vundle Submodule

Submodule .vim/bundle/vundle added at 769010ae4d

8
.vimrc
View File

@@ -40,6 +40,14 @@ highlight Search cterm=none ctermbg=blue
nmap <Esc>[Z <C-w>W
nmap <Tab> <C-w>w
"
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
"
Bundle "gmarik/vundle"
"
filetype plugin indent on
"
" other
au BufNewFile,BufRead *.go set filetype=go
au BufNewFile,BufRead *.json setf json