forked from alex-deng/vim.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.bundles
93 lines (62 loc) · 1.39 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
"
" Bundles
"
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
" Appearance
Plugin 'bling/vim-airline'
" Plugin 'Yggdroot/indentLine'
" Colorscheme
Plugin 'jordwalke/flatlandia'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdcommenter'
Plugin 'osyo-manga/vim-over'
Plugin 'majutsushi/tagbar'
Plugin 'terryma/vim-multiple-cursors'
" Quicker finder
Plugin 'kien/ctrlp.vim'
Plugin 'ervandew/supertab'
Plugin 'scrooloose/syntastic'
if !has("win32")
"Plugin 'Valloric/YouCompleteMe'
" Gtags
Plugin 'aceofall/gtags.vim'
end
" Git
Plugin 'tpope/vim-fugitive'
" Snippets
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
" Template
" Plugin 'aperezdc/vim-template'
" Syntax Highlight
Plugin 'octol/vim-cpp-enhanced-highlight'
" HTML
Plugin 'othree/html5.vim'
Plugin 'mattn/emmet-vim'
Plugin 'hail2u/vim-css3-syntax'
" Javascript
Plugin 'elzr/vim-json'
Plugin 'pangloss/vim-javascript'
Plugin 'kchmck/vim-coffee-script'
" Ruby
Plugin 'vim-ruby/vim-ruby'
Plugin 'tpope/vim-rails'
Plugin 'tpope/vim-bundler'
" Python
Plugin 'klen/python-mode'
" Erlang
Plugin 'jimenezrick/vimerl'
" QML
Plugin 'peterhoeg/vim-qml'
" Markdown
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
Plugin 'chase/vim-ansible-yaml'
Plugin 'slim-template/vim-slim'
Plugin 'vim-perl/vim-perl'
Plugin 'mxw/vim-jsx'
call vundle#end()
filetype plugin indent on