add base .vim folder and add Vundle plugin manager
commit
dd10bee54b
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "bundle/Vundle.vim"]
|
||||
path = bundle/Vundle.vim
|
||||
url = https://github.com/gmarik/Vundle.vim.git
|
||||
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 6497e37694cd2134ccc3e2526818447ee8f20f92
|
||||
|
|
@ -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
|
||||
Loading…
Reference in New Issue