commit dd10bee54b1ae2f87a4dbc6ca9dc491b69f14c45 Author: Kuiki <911yinhui911@163.com> Date: Sun Jun 4 12:07:44 2017 +0800 add base .vim folder and add Vundle plugin manager diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..011510e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "bundle/Vundle.vim"] + path = bundle/Vundle.vim + url = https://github.com/gmarik/Vundle.vim.git diff --git a/bundle/Vundle.vim b/bundle/Vundle.vim new file mode 160000 index 0000000..6497e37 --- /dev/null +++ b/bundle/Vundle.vim @@ -0,0 +1 @@ +Subproject commit 6497e37694cd2134ccc3e2526818447ee8f20f92 diff --git a/vimrc b/vimrc new file mode 100644 index 0000000..7575bee --- /dev/null +++ b/vimrc @@ -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