File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ .netrwhist
2
+ /bundle
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments