forked from OneDirection9/setup-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc.plugins
More file actions
41 lines (33 loc) · 1.27 KB
/
vimrc.plugins
File metadata and controls
41 lines (33 loc) · 1.27 KB
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
" Plug collections
" Simple
" -----------------------------------------------------------------------------
Plug 'tpope/vim-surround' " Surround
Plug 'Townk/vim-autoclose' " Autoclose
" Basic
" -----------------------------------------------------------------------------
" Plug 'yianwillis/vimcdoc' " Vim Document in Chinese
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'altercation/vim-colors-solarized'
Plug 'Yggdroot/LeaderF', { 'do': './install.sh' }
" High
" -----------------------------------------------------------------------------
Plug 'mhinz/vim-signify'
Plug 't9md/vim-choosewin' " Window chooser
" Improved
" -----------------------------------------------------------------------------
Plug 'Shougo/echodoc.vim'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " Better file browser
Plug 'vim-scripts/taglist.vim', { 'on': 'TlistToggle' } " Class/module browser
" 索引
Plug 'ludovicchabant/vim-gutentags'
Plug 'skywind3000/gutentags_plus'
Plug 'skywind3000/vim-preview' " Preview window
" Python
Plug 'michaeljsmith/vim-indent-object' " Indent text object
Plug 'jeetsukumaran/vim-indentwise' " Indentation based movements
Plug 'google/yapf'
" Auto Complete
Plug 'davidhalter/jedi-vim'
" Asynchronous Lint Engine
Plug 'w0rp/ale'