forked from zhupg/EnvConfiguration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.bundles
40 lines (34 loc) · 845 Bytes
/
vimrc.bundles
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
if &compatible
set nocompatible
end
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Let Vundle manage Vundle
Bundle 'gmarik/vundle'
" Define bundles via Github repos
Bundle 'kien/ctrlp.vim'
Bundle 'bling/vim-airline'
Bundle 'christoomey/vim-run-interactive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'Valloric/YouCompleteMe'
Bundle 'bronson/vim-trailing-whitespace'
Bundle 'Shougo/neocomplete'
Bundle 'mileszs/ack.vim'
Bundle 'Valloric/ListToggle'
Bundle 'mbbill/undotree'
Bundle 'pthrasher/conqueterm-vim'
" vim-scripts repos
Bundle 'autoload_cscope.vim'
Bundle 'vcscommand.vim'
Bundle 'taglist.vim'
Bundle 'EasyGrep'
Bundle 'mru.vim'
Bundle 'The-NERD-Commenter'
Bundle 'The-NERD-tree'
Bundle 'YankRing.vim'
Bundle 'a.vim'
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
filetype on