Skip to content

Commit 7e70173

Browse files
committed
Initial commit
0 parents  commit 7e70173

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.netrwhist
2+
/bundle

.vimrc

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
Plugin 'tpope/vim-fugitive'
13+
Plugin 'Valloric/YouCompleteMe'
14+
Plugin 'scrooloose/nerdtree'
15+
Plugin 'kien/ctrlp.vim'
16+
Plugin 'bling/vim-airline'
17+
Plugin 'scrooloose/syntastic'
18+
Plugin 'octol/vim-cpp-enhanced-highlight'
19+
Plugin 'flazz/vim-colorschemes'
20+
Plugin 'joshdick/onedark.vim'
21+
22+
" All of your Plugins must be added before the following line
23+
call vundle#end() " required
24+
filetype plugin indent on " required
25+
syntax on
26+

0 commit comments

Comments
 (0)