-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugs.vim
More file actions
121 lines (103 loc) · 2.81 KB
/
plugs.vim
File metadata and controls
121 lines (103 loc) · 2.81 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
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
call plug#begin('~/.vim/plugged')
"------------------
" Code Completions
"------------------
Plug 'Shougo/neocomplete'
Plug 'mattn/emmet-vim'
Plug 'jiangmiao/auto-pairs'
Plug 'ervandew/supertab'
" snippets
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
"-----------------
" Fast navigation
"-----------------
Plug 'andymass/vim-matchup'
Plug 'easymotion/vim-easymotion'
Plug 'haya14busa/incsearch.vim'
Plug 'haya14busa/incsearch-fuzzy.vim'
Plug 'haya14busa/incsearch-easymotion.vim'
"--------------
" Fast editing
"--------------
Plug 'tpope/vim-surround'
Plug 'scrooloose/nerdcommenter'
Plug 'sjl/gundo.vim', {'on': 'GundoToggle'}
Plug 'godlygeek/tabular'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'vim-scripts/argtextobj.vim'
Plug 'tpope/vim-repeat'
Plug 'gcmt/wildfire.vim'
"'bkad/CamelCaseMotion'
"'terryma/vim-multiple-cursors'
"--------------
" IDE features
"--------------
Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'}
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'majutsushi/tagbar'
Plug 'mileszs/ack.vim'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'tpope/vim-fugitive'
Plug 'vim-airline/vim-airline'
Plug 'vim-syntastic/syntastic'
Plug 'bronson/vim-trailing-whitespace'
Plug 'fholgado/minibufexpl.vim'
Plug 'maksimr/vim-jsbeautify'
"'humiaozuzu/TabBar'
"-------------
" Other Utils
"-------------
Plug 'nvie/vim-togglemouse'
"'humiaozuzu/fcitx-status'
"----------------------------------------
" Syntax/Indent for language enhancement
"----------------------------------------
"------- web backend ---------
"'2072/PHP-Indenting-for-VIm'
"'tpope/vim-rails'
"'lepture/vim-jinja'
Plug 'digitaltoad/vim-jade'
"------- web frontend ----------
Plug 'othree/html5.vim', {'for': 'html'}
Plug 'pangloss/vim-javascript'
Plug 'kchmck/vim-coffee-script', {'for': 'coffee'}
Plug 'nono/jquery.vim'
Plug 'groenewege/vim-less', {'for': 'less'}
" 'wavded/vim-stylus'
" 'nono/vim-handlebars'
" 'tpope/vim-haml'
"------- markup language -------
"'tpope/vim-markdown'
"'timcharper/textile.vim'
"------- Ruby --------
"'tpope/vim-endwise'
"------- Go ----------
Plug 'fatih/vim-go', {'for': 'go'}
"------- FPs ------
Plug 'luochen1990/rainbow'
" 'wlangstroth/vim-racket'
" 'vim-scripts/VimClojure'
" 'rosstimson/scala-vim-support'
"------- Recat ------
Plug 'mxw/vim-jsx'
"--------------
" Appearance
"--------------
Plug 'yonchu/accelerated-smooth-scroll'
"--------------
" Color Schemes
"--------------
Plug 'rickharris/vim-blackboard'
Plug 'altercation/vim-colors-solarized'
Plug 'rickharris/vim-monokai'
Plug 'tpope/vim-vividchalk'
Plug 'Lokaltog/vim-distinguished'
Plug 'chriskempson/vim-tomorrow-theme'
Plug 'fisadev/fisa-vim-colorscheme'
Plug 'ajh17/Spacegray.vim'
"------ Airline ------
Plug 'vim-airline/vim-airline-themes'
" You can specify revision/branch/tag.
" call dein#add('Shougo/vimshell', { 'rev': '3787e5' })
" Add plugins to &runtimepath
call plug#end()