forked from humiaozuzu/dot-vimrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundles.vim
128 lines (120 loc) · 2.97 KB
/
bundles.vim
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Plugin 'gmarik/vundle'
"
""------------------
"" Code Completions
""------------------
""Plugin 'Shougo/neocomplete.vim'
Plugin 'ervandew/supertab'
Plugin 'mattn/emmet-vim'
Plugin 'Raimondi/delimitMate'
Plugin 'Valloric/YouCompleteMe'
"" for python
""Plugin 'davidhalter/jedi-vim'
""for C-family
""There's conflict
""------ snipmate dependencies -------
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'
"
""optional
""Plugin 'honza/vim-snippets'
"
""-----------------
"" Fast navigation
""-----------------
""Plugin 'tsaleh/vim-matchit'
Plugin 'edsono/vim-matchit'
Plugin 'Lokaltog/vim-easymotion'
"
""--------------
"" Fast editing
""--------------
Plugin 'tpope/vim-surround'
Plugin 'scrooloose/nerdcommenter'
Plugin 'sjl/gundo.vim'
Plugin 'godlygeek/tabular'
Plugin 'nathanaelkane/vim-indent-guides'
"
""--------------
"" IDE features
""--------------
Plugin 'scrooloose/nerdtree'
""Plugin 'humiaozuzu/TabBar'
Plugin 'majutsushi/tagbar'
Plugin 'mileszs/ack.vim'
Plugin 'kien/ctrlp.vim'
Plugin 'tpope/vim-fugitive'
""Plugin 'Lokaltog/vim-powerline'
Plugin 'bling/vim-airline'
Plugin 'scrooloose/syntastic'
Plugin 'bronson/vim-trailing-whitespace'
Plugin 'junegunn/goyo.vim'
Plugin 'yonchu/accelerated-smooth-scroll'
"
""-------------
"" Other Utils
""-------------
"" Plugin 'humiaozuzu/fcitx-status'
Plugin 'nvie/vim-togglemouse'
Plugin 'gcmt/wildfire.vim'
"
""----------------------------------------
"" Syntax/Indent for language enhancement
""----------------------------------------
""------- web backend ---------
Plugin '2072/PHP-Indenting-for-VIm'
"Plugin 'tpope/vim-rails'
Plugin 'lepture/vim-jinja'
""Plugin 'digitaltoad/vim-jade'
"
""------- web frontend ----------
Plugin 'othree/html5.vim'
"" Plugin 'tpope/vim-haml'
Plugin 'pangloss/vim-javascript'
Plugin 'kchmck/vim-coffee-script'
Plugin 'nono/jquery.vim'
"" Plugin 'groenewege/vim-less'
"" Plugin 'wavded/vim-stylus'
"" Plugin 'nono/vim-handlebars'
"
""------- markup language -------
Plugin 'tpope/vim-markdown'
"" Plugin 'timcharper/textile.vim'
"
""------- Ruby --------
"" Plugin 'tpope/vim-endwise'
"
""------- Go ----------
Plugin 'jnwhiteh/vim-golang'
"
""------- FPs ------
Plugin 'kien/rainbow_parentheses.vim'
"" Plugin 'wlangstroth/vim-racket'
"" Plugin 'vim-scripts/VimClojure'
"" Plugin 'rosstimson/scala-vim-support'
"
""--------------
"" Color Schemes
""--------------
Plugin 'rickharris/vim-blackboard'
Plugin 'altercation/vim-colors-solarized'
Plugin 'rickharris/vim-monokai'
Plugin 'tpope/vim-vividchalk'
Plugin 'Lokaltog/vim-distinguished'
Plugin 'chriskempson/vim-tomorrow-theme'
Plugin 'fisadev/fisa-vim-colorscheme'
Plugin 'flazz/vim-colorschemes'
"Plugin 'vim-scripts/ColorSchemePicker'
filetype plugin indent on " required!
"------
"External plugin
"------
Plugin 'rizzatti/funcoo.vim'
""Plugin 'rizzatti/dash.vim'