add base .vim folder and add Vundle plugin manager

master
Kuiki 2017-06-04 12:07:44 +08:00
commit dd10bee54b
3 changed files with 17 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

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

1
bundle/Vundle.vim Submodule

@ -0,0 +1 @@
Subproject commit 6497e37694cd2134ccc3e2526818447ee8f20f92

13
vimrc Normal file
View File

@ -0,0 +1,13 @@
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'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required