-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.plugin
78 lines (70 loc) · 2.14 KB
/
vimrc.plugin
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
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
call vundle#end()
call plug#begin('~/.vim/plugged')
" PlugInstall and PlugUpdate will clone fzf in ~/.fzf and run install script
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
" Both options are optional. You don't have to install fzf in ~/.fzf
" and you don't have to run install script if you use fzf only in Vim.
Plug 'yardnsm/vim-import-cost'
Plug 'vuejs/eslint-plugin-vue'
Plug 'posva/vim-vue'
Plug 'heavenshell/vim-jsdoc'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'tomasiser/vim-code-dark'
Plug 'roxma/vim-hug-neovim-rpc'
Plug 'Shougo/deoplete.nvim'
Plug 'w0rp/ale'
Plug 'roxma/nvim-yarp'
"Plug 'bdauria/angular-cli.vim'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'scrooloose/nerdcommenter'
Plug 'SirVer/ultisnips'
Plug 'sickill/vim-monokai'
Plug 'scrooloose/nerdtree'
Plug 'skywind3000/asyncrun.vim'
"Plug 'danro/rename.vim'
"Plug 'karlbright/qfdo.vim'
"Plug 'tpope/vim-endwise'
"Plug 'godlygeek/tabular'
"Plug 'tpope/vim-dispatch'
"Plug 'szw/vim-maximizer'
"Plug 'kana/vim-textobj-user'
Plug 'pangloss/vim-javascript'
Plug 'mxw/vim-jsx'
"Plug 'leafgarland/typescript-vim'
Plug 'mattn/emmet-vim'
"Plug 'yssl/QFEnter'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
"Plug 'edkolev/tmuxline.vim'
"Plug 'xolox/vim-shell'
"Plug 'xolox/vim-misc'
"Plug 'Quramy/tsuquyomi'
"Plug 'Quramy/vim-js-pretty-template'
"Plug 'jason0x43/vim-js-indent'
"Plug 'Shougo/vimproc.vim'
"Plug 'digitaltoad/vim-pug'
Plug 'jiangmiao/auto-pairs'
"Plug 'bdauria/vim-easyclip'
Plug 'prettier/vim-prettier'
Plug 'tpope/vim-repeat'
Plug 'flazz/vim-colorschemes'
"Plug 'vim-scripts/BufOnly.vim'
"Plug 'rstacruz/sparkup', {'rtp': 'vim/'}
Plug 'easymotion/vim-easymotion'
"Plug 'othree/xml.vim'
"Plug 'qpkorr/vim-bufkill'
"Plug 'rhysd/vim-clang-format'
"Plug 'galooshi/vim-import-js'
"Plug 'Shougo/neocomplete.vim'
"Plug 'mhartington/vim-angular2-snippets'
Plug 'honza/vim-snippets'
"Plug 'sbdchd/neoformat'
Plug 'benmills/vimux'
Plug 'Valloric/YouCompleteMe', { 'do': './install.py --tern-completer' }
call plug#end()
filetype plugin indent on