-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvimrc
59 lines (53 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
" All the commands here are required by Vundle.
" Other settings are contained in the init dir and executed at the end of this
" file.
" Note: Skip initialization for vim-tiny or vim-small.
if !1 | finish | endif
set nocompatible
filetype off
call plug#begin('~/.vim/bundle')
Plug 'altercation/vim-colors-solarized'
Plug 'b4winckler/vim-objc'
Plug 'bkad/CamelCaseMotion'
Plug 'chrisbra/SudoEdit.vim'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'Denaun/DoxygenToolkit.vim'
Plug 'Denaun/molokai'
Plug 'Denaun/vim-as'
Plug 'Dewdrops/SearchComplete'
Plug 'gi1242/vim-multimarkdown', { 'for': 'mmd' }
Plug 'godlygeek/tabular'
Plug 'honza/vim-snippets'
Plug 'inkarkat/argtextobj.vim'
Plug 'jcfaria/Vim-R-plugin', { 'for': 'r' }
Plug 'junegunn/goyo.vim'
Plug 'junegunn/limelight.vim'
Plug 'junegunn/vim-easy-align'
Plug 'Keithbsmiley/investigate.vim'
Plug 'kien/rainbow_parentheses.vim'
Plug 'klen/python-mode', { 'for': 'python' }
Plug 'terryma/vim-multiple-cursors'
Plug 'majutsushi/tagbar', { 'on': 'TagbarToggle' }
Plug 'MORZorg/vim-sol'
Plug 'plasticboy/vim-markdown', { 'for': ['mkd', 'mmd'] }
Plug 'pycckuu/MatlabFilesEdition', { 'for': 'matlab' }
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/syntastic'
Plug 'SirVer/ultisnips'
Plug 'svermeulen/vim-indent-object', { 'branch': 'working' }
Plug 'toyamarinyon/vim-swift', { 'for': 'swift' }
Plug 'tpope/vim-abolish'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-speeddating'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
Plug 'triglav/vim-visual-increment'
Plug 'Valloric/YouCompleteMe',
\ { 'do': './install.sh --clang-completer --system-libclang' }
Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' }
call plug#end()
filetype plugin indent on
" Source initialization files
runtime! init/**.vim