forked from matschaffer/vim-matschaffer
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvimrc
34 lines (26 loc) · 727 Bytes
/
vimrc
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
set nocompatible
filetype on
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'altercation/vim-colors-solarized'
Bundle 'kien/ctrlp.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'closetag.vim'
Bundle 'sjl/gundo.vim'
Bundle 'mpilquist/vim-mpilquist'
Bundle 'derekwyatt/vim-scala'
Bundle 'vim-airline/vim-airline'
Bundle 'vim-airline/vim-airline-themes'
Bundle 'scrooloose/nerdcommenter'
Bundle 'scrooloose/nerdtree'
Bundle 'sukima/xmledit'
Bundle 'leshill/vim-json'
Bundle 'Townk/vim-autoclose'
Bundle 'mileszs/ack.vim'
Bundle 'vim-scripts/copy-as-rtf'
Bundle 'vim-scripts/camelcasemotion'
Bundle 'kien/rainbow_parentheses.vim'
Bundle 'Shougo/neocomplcache'
filetype plugin indent on