This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbundles.vim
executable file
·174 lines (139 loc) · 3.77 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
set nocompatible " be improved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" Bundle 'fholgado/minibufexpl.vim'
"
" ====================================================
"
"
"
" 快速打开文件,替换ctrlp
" Plugin 'Yggdroot/LeaderF'
Bundle 'ctrlpvim/ctrlp.vim'
"------------------
" Code Completions
"------------------
"neosnippet
"Bundle 'Shougo/neocomplcache'
"Bundle 'Shougo/neosnippet'
"Bundle 'Shougo/neosnippet-snippets'
Plugin 'Valloric/YouCompleteMe'
" Plugin 'shougo/deoplete.nvim'
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets' " 这个是作为ultisnips的配置文件来的
"------------------
" HTML/CSS代码快速编写
"------------------
Bundle 'mattn/emmet-vim'
"------------------
"补全括号和引号
"------------------
" Bundle 'Raimondi/delimitMate'
Bundle 'ervandew/supertab'
"------------------
" snippets
"------------------
Bundle 'garbas/vim-snipmate'
"Bundle 'honza/vim-snippets'
" ------ snipmate 依赖组件 ------
Bundle 'MarcWeber/vim-addon-mw-utils'
Bundle 'tomtom/tlib_vim'
"-----------------
" Fast navigation
"-----------------
" 标签跳转,vim自带了%
" Bundle 'edsono/vim-matchit'
Bundle 'Lokaltog/vim-easymotion'
"--------------
" Fast editing
"--------------
Bundle 'tpope/vim-surround'
" 注释
Bundle 'scrooloose/nerdcommenter'
" 编辑当前文件的历史记录
Bundle 'sjl/gundo.vim'
" 对齐, 好像用处不大
" Bundle 'godlygeek/tabular'
" 缩进
Bundle 'nathanaelkane/vim-indent-guides'
"--------------
" IDE features
"--------------
Bundle 'scrooloose/nerdtree'
" Bundle 'humiaozuzu/TabBar'
Bundle 'majutsushi/tagbar'
" 项目里全局搜索字符串
Bundle 'mileszs/ack.vim'
" Bundle 'dyng/ctrlsf.vim'
" Bundle 'tpope/vim-fugitive'
" Bundle 'Lokaltog/vim-powerline'
Bundle 'vim-airline/vim-airline'
Bundle 'vim-airline/vim-airline-themes'
"
" 语法检查,ycm似乎自带了
" syntax check by :Error in vim
" Bundle 'scrooloose/syntastic'
" Bundle 'w0rp/ale'
" python语法检查
" python-mode
Bundle 'nvie/vim-flake8'
" 标记无效空格
Bundle 'bronson/vim-trailing-whitespace'
"-------------
" Other Utils
"-------------
" Bundle 'humiaozuzu/fcitx-status'
" Bundle 'nvie/vim-togglemouse'
" Syntax/Indent for language enhancement
"------- web backend ---------
"Bundle '2072/PHP-Indenting-for-VIm'
"Bundle 'tpope/vim-rails'
"Bundle 'lepture/vim-jinja'
"Bundle 'digitaltoad/vim-jade'
"------- web frontend ----------
Bundle 'InfoGeeker/html5.vim'
" Bundle 'tpope/vim-haml'
" Bundle 'pangloss/vim-javascript'
" Bundle 'kchmck/vim-coffee-script'
" Bundle 'nono/jquery.vim'
" Bundle 'groenewege/vim-less'
" Bundle 'wavded/vim-stylus'
" Bundle 'nono/vim-handlebars'
"------- markup language -------
Bundle 'tpope/vim-markdown'
Plugin 'iamcco/markdown-preview.vim'
Plugin 'mzlogin/vim-markdown-toc'
" Bundle 'timcharper/textile.vim'
"------- Ruby --------
" Bundle 'tpope/vim-endwise'
"------- Go ----------
" Bundle 'fatih/vim-go'
"------- FPs ------
" 多彩括号
Bundle 'kien/rainbow_parentheses.vim'
" Bundle 'wlangstroth/vim-racket'
" Bundle 'vim-scripts/VimClojure'
" Bundle 'rosstimson/scala-vim-support'
"-------------- -------------- -------------- -------------- --------------
" Color Schemes
"-------------- -------------- -------------- -------------- --------------
Plugin 'crusoexia/vim-dracula'
" Plugin 'ciaranm/inkpot'
" Plugin 'jpo/vim-railscasts-theme'
" Plugin 'tir_black'
" -------------- -------------- -------------- -------------- --------------
" 翻译
Plugin 'iamcco/dict.vim'
" 异步运行
Plugin 'skywind3000/asyncrun.vim'
" todo fixme xxx
Plugin 'tasklist.vim'
" debug
" Plugin 'idanarye/vim-vebugger'
" 文字图标
Plugin 'ryanoasis/vim-devicons'
filetype plugin indent on " required!