-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplug.vim
65 lines (54 loc) · 1.68 KB
/
plug.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
" https://github.com/junegunn/vim-plug
call plug#begin('~/.vim/.plugged')
" Plug 'nanotech/jellybeans.vim'
Plug 'itchyny/lightline.vim'
Plug 'haishanh/night-owl.vim'
Plug 'Valloric/YouCompleteMe', { 'do': 'python3 install.py --clang-completer --go-completer --ts-completer' }
" Plug 'KabbAmine/zeavim.vim'
" Plug 'Shougo/neocomplcache.vim'
" Plug 'ashisha/image.vim'
" Plug 'ervandew/supertab'
" Plug 'jason0x43/vim-js-indent'
" Plug 'jiangmiao/auto-pairs'
" Plug 'jparise/vim-graphql'
" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
" Plug 'maralla/completor.vim'
" Plug 'mxw/vim-jsx'
" Plug 'sheerun/vim-polyglot'
" Plug 'sirver/ultisnips'
" Plug 'skywind3000/vim-keysound'
" Plug 'tpope/vim-surround'
" Plug 'vim-scripts/jQuery'
" Plug 'vim-syntastic/syntastic'
" Plug 'shawncplus/phpcomplete.vim'
" Plug 'junegunn/vim-easy-align'
" Plug 'StanAngeloff/php.vim'
Plug 'mattn/emmet-vim'
Plug 'hail2u/vim-css3-syntax'
Plug 'cakebaker/scss-syntax.vim'
Plug 'Quramy/tsuquyomi' " typescript
Plug 'airblade/vim-gitgutter'
Plug 'cocopon/svss.vim'
Plug 'easymotion/vim-easymotion'
Plug 'editorconfig/editorconfig-vim'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
" Plug 'govim/govim'
Plug 'flowtype/vim-flow'
"Plug 'groenewege/vim-less'
"Plug 'guns/xterm-color-table.vim'
Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'
" Plug 'ludovicchabant/vim-gutentags'
Plug 'kana/vim-fakeclip'
"Plug 'leafgarland/typescript-vim'
Plug 'majutsushi/tagbar'
Plug 'pangloss/vim-javascript'
Plug 'rking/ag.vim'
Plug 'tomtom/tcomment_vim'
"Plug 'rkitover/vimpager'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-markdown'
Plug 'vim-scripts/YankRing.vim'
Plug 'dense-analysis/ale'
" Plug 'w0rp/ale'
call plug#end()