-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathint.vim
More file actions
59 lines (56 loc) · 1.67 KB
/
int.vim
File metadata and controls
59 lines (56 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
" Hyperwd's init.vim
" ================
"
" Read the comments for the useful plugins' keystrokes.
"
" It meets the unadorned requirements of Python development, but any feature
" request or bug report is welcome. Send mail to Hyperwd <dongwei_chao@163.com>.
"
" Copyright (c) 2016 Hyperwd, and licensed under MIT:
" https://opensource.org/licenses/MIT.
"
" use vim-plug to manage plugins, see
" https://github.com/junegunn/vim-plug#usage
" Thanks
" for details
call plug#begin()
" Add all your plugins here
" Keep Plug commands between Plug#begin/end.
"super Code Folding
Plug 'tmhedberg/SimpylFold'
"Auto-Indentation
Plug 'vim-scripts/indentpython.vim'
"Auto-complete
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
"Syntax Checking/Highlighting
Plug 'vim-syntastic/syntastic'
"Color Schemes
Plug 'jnurmine/Zenburn'
Plug 'altercation/vim-colors-solarized'
"File Browsing
Plug 'scrooloose/nerdtree'
Plug 'jistr/vim-nerdtree-tabs'
"Tarbar based on ctags
Plug 'majutsushi/tagbar'
"Youcomplete
Plug 'Valloric/YouCompleteMe', { 'do': './install.py' }
"Super Searching
Plug 'kien/ctrlp.vim'
"Git Integration
Plug 'tpope/vim-fugitive'
"Powerline is a status bar that displays things like the current virtualenv,
"git branch, files being edited, and much more
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'Powerline/fonts',{'do':'./install.sh'}
"authorinfo http://www.vim.org/scripts/script.php?script_id=2902
Plug 'scrooloose/nerdcommenter'
"the keyboard configs of plugins
Plug 'hyperwd/hyperwd.vim'
"Auto Pairs
Plug 'jiangmiao/auto-pairs'
"multiple selections for Vim
Plug 'terryma/vim-multiple-cursors'
" All of your Plugins must be added before the following line
call plug#end()