-
Notifications
You must be signed in to change notification settings - Fork 2
/
.vimrc
48 lines (28 loc) · 1.06 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
set nocompatible
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/tools/vim-plugins/Vundle.vim
" call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
call vundle#begin('~/tools/vim-plugins')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'majutsushi/tagbar'
Plugin 'tpope/vim-surround' "Surround plugin
Plugin 'kien/ctrlp.vim'
Plugin 'ervandew/supertab'
Plugin 'vim-scripts/OmniCppComplete'
Plugin 'tpope/vim-ragtag'
Plugin 'mileszs/ack.vim'
Plugin 'vim-scripts/EnhCommentify.vim'
Plugin 'jeetsukumaran/vim-buffergator'
Plugin 'vim-scripts/autoload_cscope.vim'
Plugin 'bling/vim-airline' "VIM status line
Plugin 'tpope/vim-fugitive' "Git integration
Plugin 'davidhalter/jedi-vim' "Python Autocompletion
Plugin 'nvie/vim-flake8' "Python syntax check
Plugin 'dantesun/vim-python-pep8-indent'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on