forked from sloanelybutsurely/vimrc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.plugs
41 lines (36 loc) · 1.06 KB
/
vimrc.plugs
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
" == General editor plugins ==
Plug 'tpope/vim-surround'
Plug 'tpope/vim-commentary'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'scrooloose/nerdtree'
Plug 'tpope/vim-repeat'
Plug 'jiangmiao/auto-pairs'
Plug 'airblade/vim-gitgutter'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'itchyny/lightline.vim'
" == Autocomplete plugins ==
Plug 'ervandew/supertab'
if has('nvim')
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'carlitux/deoplete-ternjs', { 'do': 'npm install -g tern' }
Plug 'steelsojka/deoplete-flow'
else
Plug 'Valloric/YouCompleteMe', { 'do': './install.py --tern-completer' }
endif
" == JavaScript syntax highlighting ==
Plug 'othree/yajs.vim'
Plug 'othree/es.next.syntax.vim'
Plug 'mxw/vim-jsx'
Plug 'othree/javascript-libraries-syntax.vim'
" == SCSS and CSS syntax highlighting ==
if v:version < 704
Plug 'JulesWang/css.vim'
endif
Plug 'cakebaker/scss-syntax.vim'
" == JavaScript tools integration ==
if has('nvim')
Plug 'neomake/neomake'
else
Plug 'scrooloose/syntastic'
Plug 'flowtype/vim-flow'
endif