Skip to content

Commit 648b5a8

Browse files
committed
added vundle to prganize plugins and YouCompleteMe
1 parent 0679913 commit 648b5a8

File tree

6 files changed

+27
-2
lines changed

6 files changed

+27
-2
lines changed

.vimrc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
set nocompatible " be iMproved, required
2+
filetype off " required
3+
4+
" set the runtime path to include Vundle and initialize
5+
set rtp+=~/.vim/bundle/Vundle.vim
6+
call vundle#begin()
7+
" alternatively, pass a path where Vundle should install plugins
8+
"call vundle#begin('~/some/path/here')
9+
10+
" let Vundle manage Vundle, required
11+
Plugin 'VundleVim/Vundle.vim'
12+
13+
" plugin on GitHub repo
14+
Plugin 'valloric/YouCompleteMe'
15+
16+
"all of your Plugins must be added before the following line
17+
call vundle#end() " required
18+
filetype plugin indent on " required
19+
20+
21+
22+
23+
24+
125
execute pathogen#infect()
226
let mapleader = ","
327
"=====================================

bundle/Vundle.vim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 88688fe453038ac1ac26e31646cfbec50fca2fb7

bundle/YouCompleteMe

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 4f2494e87ebd5a6e9b5dc10a436d4d943f137fe6

bundle/ctrlp.vim

Lines changed: 0 additions & 1 deletion
This file was deleted.

bundle/nerdtree

Lines changed: 0 additions & 1 deletion
This file was deleted.

bundle/vim-fugitive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit b3a8be6975dcc27b523b030bf5d35d9c737aef18

0 commit comments

Comments
 (0)