Skip to content
This repository has been archived by the owner on Mar 15, 2019. It is now read-only.

Commit

Permalink
Added the Vundle plugin manager along with some plugins.
Browse files Browse the repository at this point in the history
The plugins include vim-fugative and AutoComplPop.

 -- gihub refs #13
  • Loading branch information
rudolph9 committed Sep 5, 2014
1 parent 9d621bf commit a06b6fd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule ".vim/bundle/Vundle.vim"]
path = .vim/bundle/Vundle.vim
url = git@github.com:gmarik/Vundle.vim.git
1 change: 1 addition & 0 deletions .vim/bundle/Vundle.vim
Submodule Vundle.vim added at 0b28e3
20 changes: 18 additions & 2 deletions .vimrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
" Make Vim more useful
set nocompatible
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 'gmarik/Vundle.vim'

Plugin 'tpope/vim-fugitive'
Plugin 'vim-scripts/AutoComplPop'

" All Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required


" Use the OS clipboard by default (on versions compiled with `+clipboard`)
set clipboard=unnamed
" Enhance command-line completion
Expand Down

0 comments on commit a06b6fd

Please sign in to comment.